• Resolved stiwdio

    (@stiwdio)


    Hi

    I have the following code, which Ive placed in the single post page, to show other posts in that category;

    What I’d like to do is remove the post from that list; wonder if anyone can help me; heres what I have so far;

    <div class="singlefeatures">
    <?php query_posts('posts_per_page=8&cat=4'); ?>
    <?php while ( have_posts() ) : the_post(); ?>
    <div class="featuredsingle">
    <?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );?>
    <div class="featuresingleimage" style="background-size: cover; background-image: url('<?php echo $thumb['0'];?>')"></div>
    <div class="featuresingletext"><h4>"><?php the_title() ?></h4></div></div>
    <?php endwhile; ?>
    </div>

The topic ‘Exclude current page ID’ is closed to new replies.