• Hi all,

    I’m using Mansar theme in https://www.thecookinglab.es, and after installing “Related Post by Zemanta” and Rich Snipped, i would like to swap the order of them, have first the related post and after that the rich snipped.

    However, i cannot find where this order is.

    Here is my single.php file:

    <?php get_header(); ?>
    	<section id="content" class="first clearfix" role="main">
    		<div class="post-container">
    			<?php if (have_posts()) : ?>
                   	<?php while ( have_posts() ) : the_post(); ?>
       			        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?> role="article">
      						<div class="singlebox">
    						    <?php mansar_breadcrumbs() ?>
                                    <header class="article-header">
    									<h1 class="post-title"><?php the_title(); ?></h1>
    						<div id="post-meta"><?php get_template_part( 'inc/post-meta' ); ?></div>
    
    								</header> <!-- end header -->
    <script type="text/javascript" async defer  data-pin-color="white" data-pin-height="28" data-pin-hover="true" src="//assets.pinterest.com/js/pinit.js"></script>
    								<section class="entry-content clearfix">
    									<?php the_content(); ?>
    									<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'mansar' ), 'after' => '</div>' ) ); ?>
    									<div class="clr"></div>
    								</section> <!-- end section -->
    								<footer class="article-footer">
    								    <?php the_tags('<p class="tags"><span class="tags-title">' . __('Tags:', 'mansar') . '</span> ', ' ', '</p>'); ?>
    									<p class="tags"></p>
                                        <?php edit_post_link( __( 'Edit', 'mansar' ), '<span class="edit-link">', '</span>' ); ?>
    								</footer> <!-- end footer -->
                                    <!-- <?php get_template_part( 'inc/single', 'post-share' ); ?>
                                    <?php get_template_part( 'inc/author', 'bio' ); ?> -->
                                    <!-- <?php get_template_part( 'inc/related', 'posts' ); ?>
                                    <?php if ( comments_open() || '0' != get_comments_number() ) comments_template( '', true ); ?>
                            </div>
    
    					</article> <!-- end article -->
    
                    <?php endwhile; ?>
    			<?php endif; ?>
    		</div>
    	</section> <!-- end #main -->
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Move pluging order’ is closed to new replies.