Viewing 6 replies - 1 through 6 (of 6 total)
  • It depends on your theme. What theme are you using?

    Thread Starter helpplease83

    (@helpplease83)

    Altantis I took the sidebar out so.. there’s room..

    Thread Starter helpplease83

    (@helpplease83)

    Theme is called Altantis

    Look inside your home.php file ( maybe index.php ) depending on the developers of this theme.

    There should be a function to query for posts and it will have a set number of posts to display ( in this case it should be set to 2 ) since the theme is only showing the two most recent posts.

    Increase this number to 4 – however, please be aware that this may cause problems with styling. You may need to make adjustments to the css.

    Thread Starter helpplease83

    (@helpplease83)

    Here’s what I see in the index page:
    <?php if (have_posts()) :

    <?php while (have_posts()) : the_post(); ?>
    
    <div class="box <?php if (++$counter % 2 == 0) { echo "lastbox"; }?>" id="post-<?php the_ID(); ?>" >
    
    <div class="entry">
    <img class="boxim" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php get_image_url(); ?>&h=125&w=300&zc=1" alt=""/>
    
    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php echo substr($post->post_title,0,30); ?></a></h2>

    I tried this 3 == 0 and this didn’t work..

    Thread Starter helpplease83

    (@helpplease83)

    How do you get 3 columns instead of 2?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘More then two posts’ is closed to new replies.