• Hey folks,

    Odd issue with my wordpress and the theme Alternate0. The blog in question is https://www.scumfighter.com .

    You’ll notice that some posts don’t have titles, but rather a small arrow icon (which is replacing a standard bullet in a li or ul tag).

    I’m very basic when it comes to code stuff and can’t nut out why it’s doing it. I have a feeling it’s something in the following piece of code in the Main Index Template (right at the top, just before the post code starts). The class ‘linklog’ is the bullet graphic in question…

    <?php $found=0; ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php if (in_category(34) && !$single) { $found=1; ?>
    
    <ul class="linklog">
    <li><?php echo wptexturize($post->post_content); echo ' '; comments_popup_link('(0)', '(1)', '(%)' ) ?></li>
    </ul>
    <?php } else { ?>
    
    <?php if ($found == 1) { ?>
    <div style=" margin:.5em 0 1.5em; padding-bottom:1.5em; border-bottom:1px dotted #ccc;"></div>
    <?php $found =0;} ?>

    I’ve tried commenting out sections of it to narrow down the problem, but have had no luck.

    Can anyone help? Cheers!

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Some post titles appearing as list icons? Help!’ is closed to new replies.