Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter aliceabc

    (@aliceabc)

    Hi Mike, thanks for one more time ??
    I tryed add this code, but the pagination doesn’t showed up again, I installed the plugin “pagenavi” for pagination … Do you think that need specify the number of post and the template I’m using?

    I don’t know why it’s not working ??

    I put this code:

    <?php
    global $query_string; parse_str( $query_string, $my_query_array );
    $paged = ( isset( $my_query_array[‘paged’] ) && !empty( $my_query_array[‘paged’] ) ) ? $my_query_array[‘paged’] : 1; query_posts(“numposts=4&paged=$paged”);
    ?>
    <?php query_posts(“cat=&paged=$paged”); if (have_posts()) : ?>
    <?php if ( function_exists ( ‘the_loop_wp_tiles’ ) ) : ?>
    <?php the_loop_wp_tiles(); ?>
    <?php endif; ?>
    <?php wp_pagenavi(); ?>
    <?php endif; ?>

    Thread Starter aliceabc

    (@aliceabc)

    Hi Mike ! thanks for answer, I tryed everything and i still can’t do it ! I need to put a numeric pagination on post tiles. Please can you help-me?
    For my project finish I just need do it works ! Thanks one more time

    My code is :

    <?php query_posts(“cat=&paged=$paged”); if (have_posts()) : ?>
    <?php if ( function_exists ( ‘the_loop_wp_tiles’ ) ) : the_loop_wp_tiles(); endif; ?>
    <?php else : ?>
    <?php getpagenavi(); ?>
    <?php endif; ?>

    Thread Starter aliceabc

    (@aliceabc)

    Thanks a lot Mike ??

    How I put the class on each post ? thanks

Viewing 4 replies - 1 through 4 (of 4 total)