This is an easy one, just add one line to your single.php file where you would like the Gravatar to show up. <?php echo get_avatar( get_the_author_id(),...
Want to show what any user was searching for? It is simple, just add this line where your title would be. <h1>Browsing search results for <strong>"<?php...
In this post I will show you how I created my custom widget showcasing mybloglog readers. In your function.php file add this simple line of code:...
Ever wanted to display the title of a post somewhere but limit the amount of characters that are shown? For instance, this post has a very...
Here is a nifty trick for your comments.php template. If someone comes to your site and leaves a comment but doesn’t leave a url back to...
I talked about Disabling search engine on search pages in a previous post using the meta tag. Today lets go over the web bots Cached copy...
Justin Tadlock has written a nice tutorial on how to show a password form field instead of the default text “There is no excerpt because this...
Ever wanted to print or echo the WordPress title attribute without spaces?
This is a simple one. /** * Your Blog title * */ function my_blog_title() { $blogname = get_bloginfo('name'); return '<span class="blog-title">' . $blogname . '</span>'; }...
Over the weekend, I attended WordCamp Denver, and I was asked by John Hawkins how to force links to open in a new tab with out...
Hey everyone, as you may have noticed I have a running on the site. While everything almost everything moved over smoothly, there was an issue with...
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 php...
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,...
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...
You must be logged in to post a comment.