• [ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]

    help i want posts to show up in full on the home page so here is my index.php and home.php

    here is the home.php

    <?php get_header(); ?>
    
    <div id="container">
    <div id="left-div">
        <?php if (get_option('egamer_blog_style') == 'on') { ?>
        <?php get_template_part('includes/blogstylehome'); ?>
        <?php } else { get_template_part('includes/default'); } ?>
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
    </body>
    </html>

    and here is the index.php

    <?php get_header(); ?>
    
    <div id="container">
    <div id="left-div">
        <div id="left-inside">
            <?php if (get_option('egamer_blog_style') == 'Blog Style') { ?>
            <?php get_template_part('includes/blogstyle'); ?>
            <?php } else { get_template_part('includes/defaultindex'); } ?>
        </div>
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
    </body>
    </html>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘help i want posts to show up in full on the home page’ is closed to new replies.