• the blog home page is very long , my blog have so many pictures so also it take a very long time to load , is there any way i can on the home page show only the post title and 2 or 3 lines ?

    thanks

Viewing 1 replies (of 1 total)
  • It depends on what theme you are using. You want to find something that looks like this in your index.php theme file:

    <?php while ( have_posts() ) : the_post(); ?>
    <?php the_title ?>
    <?php the_content ?>
    <? endwhile; ?>

    For the homepage, you want to call the_excerpt. Again, depending on your theme you could do this:

    <?php while ( have_posts() ) : the_post(); ?>
    <?php the_title ?>
    <?php
    if(is_front_page()){ //if its the homepage...
    the_excerpt(); //...get the excerpt.
    } else { //Not the homepage? then...
    the_content(); //...get all the content
    } ?>
    
    <?php endwhile; ?>
Viewing 1 replies (of 1 total)

The topic ‘blog Home too long’ is closed to new replies.