this is the code that i am using to display certain content on my homepage:
<div id="content">
<?php if(get_option('unnamed_shelf') == 1 && is_home()){ ?>
<?php include(TEMPLATEPATH ."/shelf.php"); ?>
<?php } ?>
<?php if(get_option('unnamed_shelf') != 1 || !is_home()){ ?>
<div class="content-top"></div>
<?php } ?>
<hr />
how can this be edited to show on every page or a specific page of my choice? Please show your solution below
Edit:
Doesnt anyone have a solution? All i want is to know what i should do to make shelf.php show on all my pages, not jus home
<div id="content">
<?php if(get_option('unnamed_shelf') == 1 && is_home()){ ?>
<?php include(TEMPLATEPATH ."/shelf.php"); ?>
<?php } ?>
<?php if(get_option('unnamed_shelf') != 1 || !is_home()){ ?>
<div class="content-top"></div>
<?php } ?>
<hr />
how can this be edited to show on every page or a specific page of my choice? Please show your solution below
Edit:
Doesnt anyone have a solution? All i want is to know what i should do to make shelf.php show on all my pages, not jus home
Last edited: