Exclude from Featured, but getting the last one from other Category.
-
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)
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.