Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • this is the full code in my single.php i am using profitmag theme

    <?php
    /**
    * The template for displaying all single posts.
    *
    * @package ProfitMag
    */

    get_header(); ?>
    <?php
    $profitmag_settings = get_option( ‘profitmag_options’ );
    if( isset( $profitmag_settings[‘sidebar_layout’] )) {
    $sidebar_layout = $profitmag_settings[‘sidebar_layout’];
    }else {
    $sidebar_layout = ‘right_sidebar’;
    }
    if( $sidebar_layout == ‘both_sidebar’ ) {
    echo ‘<div id=”primary-wrap” class=”clearfix”>’;
    }
    ?>
    <div id=”primary” class=”content-area”>
    <main id=”main” class=”site-main” role=”main”>

    <?php while ( have_posts() ) : the_post(); ?>

    <?php get_template_part( ‘content’, ‘single’ ); ?>

    <?php
    // If comments are open or we have at least one comment, load up the comment template
    if ( comments_open() || ‘0’ != get_comments_number() ) :
    comments_template();
    endif;
    ?>

    <?php profitmag_record_views(get_the_ID()); // Record post view?>
    <?php endwhile; // end of the loop. ?>

    </main><!– #main –>
    </div><!– #primary –>

    <?php get_sidebar( ‘left’ ); ?>
    <?php
    if( $sidebar_layout == ‘both_sidebar’ ) {
    echo ‘</div>’;
    }
    ?>
    <?php get_sidebar( ‘right’ ); ?>

    <?php get_footer(); ?>
    <?php if ( function_exists(‘yoast_breadcrumb’) { yoast_breadcrumb(‘<p id=”breadcrumbs”>’,'</p>’); } )?>

    please Raja, can you tell me where exactly i should place the code?
    thanks

    i added the yoast breadcrumbs to my profit mag sinlge.php
    please i followed the step to get it like this

    <?php get_sidebar( ‘left’ ); ?>
    <?php
    if( $sidebar_layout == ‘both_sidebar’ ) {
    echo ‘</div>’;
    }
    ?>
    <?php get_sidebar( ‘right’ ); ?>

    <?php get_footer(); ?>
    <?php if ( function_exists(‘yoast_breadcrumb’) { yoast_breadcrumb(‘<p id=”breadcrumbs”>’,'</p>’); } )?>

    i want to know if i am correct

Viewing 3 replies - 1 through 3 (of 3 total)