Display an External RSS Feed in Wordpress

Posted: February 3rd, 2009 | Author: Barrie Adams | Filed under: Wordpress Hacks | Tags: , , , , | No Comments »

WordPress Hacks wp_rss('http://wpforums.com/external.php?type=RSS2', 5); ?>


Include PHP on a Single Page in Wordpress

Posted: February 3rd, 2009 | Author: Barrie Adams | Filed under: Wordpress Hacks | Tags: , , , , | No Comments »

WordPress HacksReplace is_home with the page you want it to only appear on.


Dynamic Title Tags for SEO in Wordpress

Posted: February 3rd, 2009 | Author: Barrie Adams | Filed under: Wordpress Hacks | Tags: , , , , | No Comments »

WordPress Hacks<?phpif (is_home()) { echo bloginfo('name');<br /> } elseif (is_404()) {<br /> echo '404 Not Found';<br /> } elseif (is_category()) {<br /> echo 'Category:'; wp_title('');<br /> } elseif (is_search()) {<br /> echo 'Search Results';<br /> } elseif ( is_day() || is_month() || is_year() ) {<br /> echo 'Archives:'; wp_title('');<br /> } else {<br /> echo wp_title('');<br /> }<br /> ?>


Template Name in Wordpress

Posted: February 3rd, 2009 | Author: Barrie Adams | Filed under: Wordpress Hacks | Tags: , , , , | No Comments »

WordPress Hacks


Display WordPress Tags Cloud

Posted: February 3rd, 2009 | Author: Barrie Adams | Filed under: Wordpress Hacks | Tags: , , , , | No Comments »

WordPress Hacks