• I am trying to find how to remove certain post formats from showing up on my overall post page. I am sure there has to be a way, BUT I can’t seem to find the documentation for this even after reading numerous tutorials on using formats.

    The goals is that I want to use the LINKS format and STATUS format posts and have them displayed on my sidebar. I have no trouble making THAT happen, BUT I do not want those posts to show up on my main post page (because they are not really posts) and would perfer for them to not even be treated the same way in my feed ( but I guess one step at a time!)

    I am on 3.71. and am working off the Mantra theme. I am pretty sure that it is a specific command in the main loop for my post page ( https://www.adoptionbirthmothers.com/musings-of-the-lame-an-adoption-blog/) ? The question is what line/s and what is the code? I fear messing up the loop!

    Thank you!

    <?php
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    query_posts('post_status=publish&orderby=date&order=desc&posts_per_page='.get_option('posts_per_page').'&paged=' . $paged);?>
    
    		<?php if ( have_posts() ) : ?>
    
    				<?php mantra_content_nav( 'nav-above' ); ?>
    
    				<?php /* Start the Loop */ ?>
    				<?php while ( have_posts() ) : the_post(); ?>
    					<?php global $more; $more=0; ?>
    					<?php get_template_part( 'content', get_post_format() ); ?>
    
    				<?php endwhile; ?>
    
    				<?php if($mantra_pagination=="Enable") mantra_pagination(); else mantra_content_nav( 'nav-below' ); ?>
    
    			<?php else : ?>
    
    				<article id="post-0" class="post no-results not-found">
    					<header class="entry-header">
    						<h1 class="entry-title"><?php _e( 'Nothing Found', 'mantra' ); ?></h1>
    					</header><!-- .entry-header -->
    
    					<div class="entry-content">
    						<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mantra' ); ?></p>
    						<?php get_search_form(); ?>
    					</div><!-- .entry-content -->
    				</article><!-- #post-0 -->
    
    			<?php endif; ?>

  • The topic ‘Control Formats in Posts Page?’ is closed to new replies.