• Resolved ellem910

    (@ellem910)


    Hi,
    I have a single page with WP Tiles, with 20 max. I would like to add the ability to page through older posts in the category I have displayed. How would I do this in a theme using a Warp theme, with no category.php in the editor? Is this possible?

    I’m a newbie to editing PHP code, so hopefully that question makes sense. I see from the FAQ and other support questions that pagination is possible, I’m not sure how to go about implementing it.

    Thanks.

    https://wordpress.org/plugins/wp-tiles/

Viewing 1 replies (of 1 total)
  • Plugin Author Mike Martel

    (@mike_cowobo)

    Hi there! Unfortunately, pagination can only be added by coding it into your theme. Using the_loop_wp_tiles() this should be quite straightforward on most themes though.

    I’d start by reading up on how to create a Child Theme, so you don’t lose your changes when your theme updates.

    Then, in your child theme, create the template you want to apply tiles and pagination to. To find out what template file to use, read about the Template Hierarchy.

    Open the file you want to add WP Tiles to and replace the loop by the_loop_wp_tiles(). Look for while ( have_posts() ) : the_post(); until endwhile;, and replace it by by the_loop_wp_tiles().

    Your theme should provide the pagination for this page now automatically.

    Good luck, and feel free to post any follow up questions here!

    Mike

Viewing 1 replies (of 1 total)

The topic ‘pages option for warp theme?’ is closed to new replies.