Tips & Tricks

Use WordPress to print a RSS feed for Eventbrite attendees

Today I was working on the WordCamp.LA site. I was trying to show the "attendee list" on the attendees page…

3 months ago

Guide to Building a Pinterest Presence for Bloggers

Introduction Why Pinterest Deserves Your Attention Now, let's talk numbers—impressive numbers. With over 450 million active dreamers and doers, Pinterest…

3 months ago

Calling custom fields for next/previous posts

Custom fields are definitely very useful and are used on many WordPress installs. Today I’m going to show you how…

3 months ago

Remove spaces when echoing the_title

Ever wanted to print or echo the WordPress title attribute without spaces?

3 months ago

Display the_excerpt only if there is text

Have you ever wanted to display the excerpt only if you write one? A simple couple lines of code can…

3 months ago

Add a shortcode

This is a simple one. /** * Your Blog title * */ function my_blog_title() { $blogname = get_bloginfo('name'); return '<span…

3 months ago

Adding a external file after the first post

How might you display a Google ad after the first post or anything you like? It is very simple. You…

3 months ago

A simple way to query posts

Here is a simple way to call query_posts with an array of options. For all options you my use visit:…

3 months ago

Adding a favicon to your site

Looking to add a favicon to you site? Inside your WordPress theme's functions file (functions.php) add the following to inside…

3 months ago

Add additional meta boxes to Hybrid Theme

At the time of writing this post I have Theme Hybrid as my parent theme, and am using a custom…

3 months ago