I have two special users on my site. Let’s call them user1 and user2. User 1 manages “user page 1” and user2 manages “user page 2”. I want their posts to appear when I click on these links and only see their posts in WordPress.
- Should I use categories for this and if so, how do I create a link to only show posts from a certain category?
- Do I need a module for this?
- If the answer is still not clear, how do I do this?
You can use wp_qurey() function to show posts from specific authors.
Display posts by author, using author id:
Display posts by author, using author ‘user_nicename’:
More details here – http://codex.wordpress.org/Class_Reference/WP_Query#Author_Parameters