
By Austin on February 19, 2009
Well, I hope many of you have been using the WordPress plugin directory. It’s a grand location where you can find endless plugin for your WordPress blog.
But sometimes you don’t exactly get what you search for, but according to mdawaffe on WordPress, they have implemented a new open source MySQL text search engine. Well go on, test it out.
Posted in Articles | Tagged MySQL, Search Engine, Sphinx, WordPress

By Austin on February 17, 2009
Hey everyone, I just wanted to write a little about a new plugin I came across today. It’s called Absolute Privacy.
This plugin can easily help your site filter out spammer subscribers, as well as help aid a more personal or family(private) oriented blog.
John Kolbert, the creator of this plugin has a nice video of how you might implement this plugin into your site, as well as how it works. For more info, head over to the download page!
Posted in Plugins | Tagged Absolute Privacy, John Kolbert, Members, Plugins

By Austin on February 15, 2009
In a previous post I showed you how to create a custom widget, then I showed you how to create a widget for your monthly archives, and limit the month’s that show. I am showing the past 4 months in my widget at this time.
One of my readers: Alex asked:
How did you make the archives widget to show the dates separately into two columns?
Now I will show you a CSS trick to create this effect:
First we will give the unordered list a width of 100%:
ul#archives {
width:110%;
}
Then we will style the <li> nested inside.
ul#archives li {
display:inline;
float:left;
width:120px;
}
And that is it. Please make sure that you clear the float after your closing </ul>.
Posted in Tips & Tricks | Tagged CSS, How to, li, Question, Tips & Tricks, ul

By Austin on February 12, 2009
A lot of you may be using a email form to gather email’s via Feedburner. I am use that by now you know Google has decided to dump feedburner.com and move all feeds through Google Proxy or Feeburner2 which is a Google Server. Here is the new form you will need to put on your site to get new email address’s:
<form action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow"
onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=YOUR_FEED_NAME', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
<p class="form-label">Enter your email address:</p><p><input type="text" style="width:140px" name="email"/></p>
<input type="hidden" value="YOUR_FEED_NAME" name="url"/>
<input type="hidden" value="<?php bloginfo('name') ?>" name="title"/>
<input type="hidden" name="loc" value="en_US"/>
<input id="submit" type="submit" value="Subscribe" />
</form>
That’s it, just be sure to change YOUR_FEED_NAME to your feed name. For example, my feed is now http://feeds2.feedburner.com/WPCult. Where WPCult is now my ID.
Posted in Tips & Tricks | Tagged Email, Feedburner, Forms, Launchpad
By Austin on February 10, 2009
Well, it has taken along time, but it’s official. WordPress.org has released a maintenance release of the very popular WordPress 2.7 to 2.7.1 ¶
Posted in Cult | Tagged 2.7, 2.7.1, Maintenance, Release, WordPress

By Austin on February 10, 2009
I was asked by a reader:
I’m using the THiCK theme for my new design blog. I noticed you were able to add thumbnail images above your blog posts on the home page. What would I need to do to enable this on my blog?
Well Jon, this can be done very simple, since the theme is already using the Tim Thumb script.
What you will need to do is find in your index.php file, the second loop. Which you can find on line 40.
<?php query_posts('offset=1&showposts=' . get_option('woo_other_entries') . '&cat=-' . $GLOBALS['ex_asides'] ); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="post-meta"><?php the_time('j/m/y'); ?> <span>|</span> <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?></div>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
Now we are going to add in the code. At line 43 we are going to add:
<?php if (get_option('woo_resize')) { // Check if we should use the image resizer ?>
<a title="Continue reading this entry..." href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php echo bloginfo('template_url'); ?>/thumb.php?src=<?php echo get_post_meta($post->ID, "image", $single = true); ?>&h=80&w=280&zc=1&q=90" alt="<?php the_title(); ?>" /></a>
<?php } else { ?>
<a title="Continue reading this entry..." href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php echo get_post_meta($post->ID, "image", $single = true); ?>" alt="<?php the_title(); ?>" /></a>
<?php } ?>
That’s it, just make sure that in the THiCK options panel you choose the “resize” option, or the image might break the layout. Or you may change the this code: $post->ID, "image", to: $post->ID, "image_thumb", and use a separate image for the lower blog.
Posted in Themes, Tips & Tricks | Tagged THiCK, Tim Thumb, Tips & Tricks, Woo Themes

By Austin on February 9, 2009
It is official, today I purchased my ticket for WordCamp Denver! I as well as Jeana from Jeana Says, will be flying out to Colorado! Now all we need to do is find a place to stay..
Posted in News, WordCamp | Tagged Denver, WordCamp, WordCampDenver

By Austin on February 9, 2009
Posted in Showcase | Tagged Italian, Showcase

By Austin on February 7, 2009
Posted in Showcase | Tagged apps, iPhone, Showcase, tap tap tap
Add the twittar plugin for WordPress w/ comment threading
By Austin on February 18, 2009
I talked about the Twittar plugin in a previous post. But learned that the read me text file was only useful for installing the necessary
phpcode into WordPress themes that don’t have comment threading enabled.Since most new themes past version 2.7, pull the comments section from
functions.phpfile, that is where you have to edit the avatars in order to show the twittar settings.First open you
functions.php, and look for a line of code that says:This is where your new comments are pulled from when you have the threaded comments enabled.
Now just find
<?php echo get_avatar( $comment, $args['avatar_size'] ); ?>& replace with<?php twittar(70, "", "", "avatar avatar-70 photo", 1, "R"); ?>. Keep in mind that you will need to edit the Twittar setting to fit your site.Posted in Plugins, Tips & Tricks | Tagged Plugins, Threaded Comments, Tips & Tricks, Twittar, WordPress