• Hi. I tried to insert code in my home.php, but I don’t know where is the correct place. Can you help my? This is my code:

    <?php get_header(); ?>
    <?php
    global $wp_query;
    $id = $wp_query->get_queried_object_id();
    if(get_post_meta($id, “mkd_show-sidebar”, true) == ”){
    $sidebar = $mkd_options[‘category_blog_sidebar’];
    }
    else{
    $sidebar = get_post_meta($id, “mkd_show-sidebar”, true);
    }

    if(get_post_meta($id, “mkd_page_background_color”, true) != “”){
    $background_color = ‘background-color: ‘.esc_attr(get_post_meta($id, “mkd_page_background_color”, true));
    }else{
    $background_color = “”;
    }

    ?>

    <?php if(get_post_meta($id, “mkd_page_scroll_amount_for_sticky”, true)) { ?>
    <script>
    var page_scroll_amount_for_sticky = <?php echo esc_attr(get_post_meta($id, “mkd_page_scroll_amount_for_sticky”, true)); ?>;
    </script>
    <?php } ?>

    <?php get_template_part( ‘title’ ); ?>
    <?php get_template_part(‘slider’); ?>

    <?php if(isset($mkd_options[‘blog_style’]) && ($mkd_options[‘blog_style’] == 4)){
    $blog_style_class = ‘blog_masonry_full_width_template’;
    ?>
    <div class=”full_width <?php echo esc_attr($blog_style_class)?> “>
    <div class=”full_width_inner”>

    <?php
    get_template_part(‘templates/blog/blog-structure’, ‘loop’);
    ?>

    </div>
    </div>

    <?php } else { ?>

    <div class=”container”<?php mkd_inline_style($background_color); ?>>
    <?php if($mkd_options[‘overlapping_content’] == ‘yes’) {?>
    <div class=”overlapping_content”><div class=”overlapping_content_inner”>
    <?php } ?>
    <div class=”container_inner default_template_holder clearfix”>
    <?php if(($sidebar == “default”)||($sidebar == “”)) : ?>
    <?php
    get_template_part(‘templates/blog/blog’, ‘structure’);
    ?>
    <?php elseif($sidebar == “1” || $sidebar == “2”): ?>
    <div class=”<?php if($sidebar == “1”):?>two_columns_66_33<?php elseif($sidebar == “2”) : ?>two_columns_75_25<?php endif; ?> background_color_sidebar grid2 clearfix”>
    <div class=”column1 content_left_from_sidebar”>
    <div class=”column_inner”>
    <?php
    get_template_part(‘templates/blog/blog’, ‘structure’);
    ?>
    </div>
    </div>
    <div class=”column2″>
    <?php get_sidebar(); ?>
    </div>
    </div>
    <?php elseif($sidebar == “3” || $sidebar == “4”): ?>
    <div class=”<?php if($sidebar == “3”):?>two_columns_33_66<?php elseif($sidebar == “4”) : ?>two_columns_25_75<?php endif; ?> background_color_sidebar grid2 clearfix”>
    <div class=”column1″>
    <?php get_sidebar(); ?>
    </div>
    <div class=”column2 content_right_from_sidebar”>
    <div class=”column_inner”>
    <?php
    get_template_part(‘templates/blog/blog’, ‘structure’);
    ?>
    </div>
    </div>
    </div>
    <?php endif; ?>
    </div>
    <?php if($mkd_options[‘overlapping_content’] == ‘yes’) {?>
    </div></div>
    <?php } ?>
    </div>

    <?php } ?>
    <?php get_footer(); ?>

Viewing 1 replies (of 1 total)
  • Plugin Author Content Views

    (@pt-guy)

    Hello,
    Please paste the code For theme file
    before

    
    <?php
    get_template_part(‘templates/blog/blog-structure’, ‘loop’);
    ?>
    

    and before

    
    <?php
    get_template_part(‘templates/blog/blog’, ‘structure’);
    ?>
    

    Best regards,

Viewing 1 replies (of 1 total)
  • The topic ‘Insert code in home.php’ is closed to new replies.