Wordpress only on homepage code.

Looking to push links to a site and want specific niches, site types, numbers, tld's etc, this is a good place to ask or look.

Moderators: vrocks, drocd, jdoughs

Post Reply
User avatar
jdoughs
Site Admin
Posts: 521
Joined: Thu Apr 01, 2010 4:55 pm

Wordpress only on homepage code.

Post by jdoughs »

Posting this for someone to use. Don't mind me :)


Code: Select all

<?php
wp_reset_query();
if (is_home() ) {
echo 'ANYTHING YOU PUT INSIDE HERE ONLY SHOWS ON HOMEPAGE';
} 
?>
[/size]


Code: Select all

<?php
wp_reset_query();
if (is_home() ) {
echo '<h2>My Blog Sidebar</h2>
<div class="box">
<ul>
<li><a href="http://www.alinktrade.com/">Trades</a></li>
<li><a href="http://www.anotherlinktrade.com/">Hardlinks</a></li>
</ul>
</div>';
} 
?>
[/size]
ImageImage
Post Reply