• Marcin

    (@k0n0pka)


    Hey,

    I’m trying to make pagination with TOP shortcode, but that is not working.. maybe u have working example of usage pagination?

    [thumbs_rating_top posts_per_page=”5″ pagination=”true” post_type=”post” show_votes=”yes” order=”DESC”]

    Any ideas?

    https://wordpress.org/plugins/thumbs-rating/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Ricard Torres

    (@quicoto)

    Hello,

    As you can see in the FAQ https://wordpress.org/plugins/thumbs-rating/faq/ there is no pagination feature.

    Regards

    Thread Starter Marcin

    (@k0n0pka)

    Hello, thanks for your fast reply.

    So maybe there is a possibility to display posts like category view with ORDER in query posts by votes?

    Thread Starter Marcin

    (@k0n0pka)

    Hey, so I did like i said:

    I made just post args:

    $args = array(
    'post_type' => 'post',
    'posts_per_page' => 5,
    'order' => 'DESC',
    'meta_key'  => '_thumbs_rating_up',
    'orderby' => 'meta_value_num',
    'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1),
    );
    
    query_posts($args);
    
    ...

    and worked perfectly!

    Plugin Author Ricard Torres

    (@quicoto)

    Awesome! Thanks for posting the solution.

    Regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Is pagination really working?’ is closed to new replies.