• Resolved tecnosh

    (@tecnosh)


    Hello.
    I’m using the Themasterplan theme that have a Post List and Featured place where the post are show. I have created a category that I don’t want to show on home page.. have tried alot of code but none work.

    Can you help me? appreciated.

    <div id="home_featured">   <!-- start home_featured -->
    <h3 class="home_featured">Receita de Destaque</h3>
    <?php $the_query = new WP_Query('category_name=featured&showposts=1');
    while ($the_query->have_posts()) : $the_query->the_post();
    
    $do_not_duplicate = $post->ID; ?>
    <div class="feat_content">
    
    <?php if ( get_post_meta($post->ID, 'featured_home_img', true) ) { ?>
    
    <div class="feat_thumb"><a>" rel="bookmark" title="Receita Completa: <?php the_title(); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/featured/<?php echo get_post_meta($post->ID, "featured_home_img", $single = true); ?>" alt="<?php the_title(); ?>" /></a></div>
    
    <?php } ?>
    
    <div class="feat_title"><a>" rel="bookmark" title="Receita Completa: <?php the_title(); ?>"><?php the_title(); ?></a></div>
    <div class="feat_exc">
    <?php echo strip_tags(get_the_excerpt(), '<a><strong>'); ?>
    </div>
    </div>
    
    <?php endwhile; ?>
    
    </div>   <!-- end home_featured --></strong></a>
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter tecnosh

    (@tecnosh)

    in other words, I want a category that only post on category and exclude it from feactured last post and post list.

    the code on 1o post its only for featured last post. the post list will see later, i think the same resolved code will do for both.

    the site is: https://www.albumdereceitas.com , the featured post its on top left with a honey pot and the 5 post list on right with small thumbs.

    thanks, in advance.

    Thread Starter tecnosh

    (@tecnosh)

    solved.

    used a SimplyExclude plugin, works like a charm.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Exclude from Featured, but getting the last one from other Category.’ is closed to new replies.