Conditional Tag ? Help Please?
-
I’d like to set up some conditional tags for if the page showing is the photos page? I can’t get it working correctly, this is in my single post template:
<?php if ( is_page(‘Photos’))
{
<div id=”copy”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”navigation”>
<div class=”alignleft”>
<?php previous_post_link(‘« %link’) ?></div>
<div class=”alignright”>
<?php next_post_link(‘%link »’) ?></div>
</div>
<div class=”post”>
<?php the_content(); ?></div><!– /post –>
}
?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Conditional Tag ? Help Please?’ is closed to new replies.