Today I was working on the WordCamp.LA site. I was trying to show the “attendee list” on the attendees page with out having to update the...
Introduction Why Pinterest Deserves Your Attention Now, let’s talk numbers—impressive numbers. With over 450 million active dreamers and doers, Pinterest is not merely thriving; it’s bustling...
Custom fields are definitely very useful and are used on many WordPress installs. Today I’m going to show you how to easily get custom fields values...
Ever wanted to print or echo the WordPress title attribute without spaces?
Have you ever wanted to display the excerpt only if you write one? A simple couple lines of code can display the_excerpt any where you like.
This is a simple one. /** * Your Blog title * */ function my_blog_title() { $blogname = get_bloginfo('name'); return '<span class="blog-title">' . $blogname . '</span>'; }...
How might you display a Google ad after the first post or anything you like? It is very simple. You just need to add the variable...
Here is a simple way to call query_posts with an array of options. For all options you my use visit: WordPress Codex. <?php $my_query = array('showposts'...
Looking to add a favicon to you site? Inside your WordPress theme’s functions file (functions.php) add the following to inside your PHP code. /** * FAVICON...
At the time of writing this post I have Theme Hybrid as my parent theme, and am using a custom version of Hybrid News that Justin...
Have you ever uploaded an image that might have been a tad bigger than the width of your content area? I know I have! So here...
Here is a simple way to display any RSS feed in your WordPress blog. <?php include_once(ABSPATH . WPINC . '/rss.php'); $rss = fetch_rss('http://feeds2.feedburner.com/WPCult'); $items = array_slice($rss->items,...
In WordPress, when you use wp_page_menu your anchor attribute’s usually carry a title with the same name. I’m not sure if it’s correct to do this,...
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...
You must be logged in to post a comment.