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

    (@codeoner)

    I resolved it, just change in stylishpopularposts.php
    this line
    $top_popular_posts = new WP_Query(‘showposts=’ . $number . ‘&orderby=comment_count&order=DESC’);

    to this

    $top_popular_posts = new WP_Query(array( ‘category_name’ => ‘**your_category_name**’, ‘posts_per_page’ => 10 ));

    where **your_category_name** you put the name of your category and posts_per_page how many posts you want to display ??

Viewing 1 replies (of 1 total)
  • The topic ‘Display new posts of category’ is closed to new replies.