• Hi,
    I’m creating a new theme and started with FoundationPress, now I want to display 15 postpreviews like this:
    1 2 3
    4 5 6
    7 8 9 etc.. and not like this:
    1 4 7
    2 5 8
    3 6 9 etc… and only for one category..
    Is there somebody who did that allready and could help me?
    Thanks in advance
    musicgabser

Viewing 1 replies (of 1 total)
  • Thread Starter musicgabser

    (@musicgabser)

    Hi,
    I approach the target:
    <div class=”large-4 small-12 columns” id=”post-<?php the_ID(); ?>” <?php post_class(); ?>> <header>
    <h1><span>“><?php the_title(); ?></span></h1>
    <?php FoundationPress_entry_meta(); ?>
    </header> <div class=”entry-content”>
    <?php the_content(__(‘Continue reading…’, ‘FoundationPress’)); ?>
    </div>
    <footer>
    <?php $tag = get_the_tags(); if (!$tag) { } else { ?><p><?php the_tags(); ?></p><?php
    } ?>
    </footer>

    But do I set a limit to 15 posts and then a pagination?

    Greetz and thanks in advance
    musicgabser

Viewing 1 replies (of 1 total)

The topic ‘post previews among themselves split into three’ is closed to new replies.