• smokedfisher

    (@smokedfisher)


    My links are not appearing on the sidebar due to conditional tag. I need help in finding how to get my links to show within the conditions.
    this is the sidebar.php

    <!– Start of Navigation –>
    <div id=”navigation”>
    <div class=”nav_title”><img src=”<?php bloginfo(‘url’); ?>/wp-content/themes/drunkloser/images/links.jpg” alt=”Links” /></div>

      <?php wp_get_links(); ?>

    <div class=”nav_title”><img src=”<?php bloginfo(‘url’); ?>/wp-content/themes/drunkloser/images/last-posts.jpg” alt=”Last Posts” /></div>

      <?php
      $posts = get_posts(‘numberposts=5’);
      foreach($posts as $post) :
      ?>

    • “><?php the_title(); ?>
    • <?php endforeach; ?>

    <!– End of Navigation –>
    </div>

    my site is http://www.jethro.ws

The topic ‘Conditional tag problems’ is closed to new replies.