• So I’ve tried about 5 or 6 different plug-ins and can’t get exactly what I need. Curious if anyone has any ideas or suggestions.

    I want posts from only one category to show up within a page. I need it to only show 10 or so posts with a “More” or “Next” button at the bottom to load the next 10 posts. Any suggestions are greatly appreciated.

    I’m using the Station Pro theme.

    https://www.pagelines.com/themes/stationpro/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Anonymous User

    (@anonymized-3085)

    erm WordPress does this by default. If it isn’t then the theme may not be working correctly – try using TwentyTen and viewing a category page – you should see al posts for that specific category.

    Creating a Page of Posts is a nice project to build your own page that returns posts from one category.

    Editing the parameters for query_posts will give you a bunch of combinations:

    $args=array(
        'category__in' => array($cat),
        'orderby' => 'date',
        'order' => 'DESC',
        'paged' => $paged,
        'posts_per_page' => $post_per_page,
        'caller_get_posts' => $do_not_show_stickies
      );
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Plugin or ideas needed…’ is closed to new replies.