• Allianora

    (@allianora)


    So im pretty new with wordpress and Im a noob with php so please bear with me if you do decide to help me out…

    How do I make content on my wordpress pages paginate like they do in the main post page?

    Im assuming that I have to make a static page and direct posts from a certain category to it , define the amount of posts I want to show on that page in my case that would be 1 post per page, sign a template to my page in my case it would be different then the normal blog template only including content of the post leaving out title,date,posted in…

    How would you write this is php?

    This is my current template which are just the basic things

    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
    <?php the_content(__('Read the rest of this entry &raquo;', '')); ?>
    <?php endwhile; ?>
    <?php else : ?>
    <h3><?php _e('Not Found', ''); ?></h3>
    <?php _e('Sorry, but you are looking for something that isn’t here.', ''); ?>
    <?php get_search_form(); ?>
    <?php endif; ?>

    Did I mention i really dont know what im doing? T_T

  • The topic ‘Pagination on WordPress static page’ is closed to new replies.