Title: Display Posts by User
Last modified: August 18, 2016

---

# Display Posts by User

 *  [Lasha](https://wordpress.org/support/users/lasha/)
 * (@lasha)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/)
 * Hey guys, I’ve been pulling my hair out over this topic, and I can’t seem to 
   find a conclusion. Is there any tag, or parameter within a tag that will allow
   me to display all posts from a specific user? Permanent Links are enabled, and
   I know that when you enter /author/nickname, it displays all of that user’s posts
   in an archive.
 * Now, that is about 10% helpful, since I would like to have a customized page 
   of my own where I use a tag to insert into the page that will display whichever
   user’s posts I choose to. This would help me out so much since my blog will be
   based on multiple authors/users.

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

 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376821)
 * Did you have a chance to look at this? > [Author_Templates](http://codex.wordpress.org/Author_Templates)
   and all the other resources referred from there?
 *  Thread Starter [Lasha](https://wordpress.org/support/users/lasha/)
 * (@lasha)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376825)
 * I did look through that page for a long time, and found something that is similar
   to what I am looking for. What the script there does is generates a page with
   the author’s posts. I want to have complete control over this, so I can do this:
 * Create my own HTML/CSS page, and within a certain div tag, have a tag that would
   retrieve all of the posts from a user. I don’t want it to display links to the
   author’s posts, but instead, snippets of the full post just like on the index
   page where everyone’s posts are displayed, and you can choose to view the full
   entry.
 * I know it sounds so simple, but I can’t seem to find anything. The reason why
   I want to do it manually is because the page I want to insert a user’s posts 
   in will have other custom stuff loaded FOR that user like their picture, manually
   entered bio, and etc. That’s one thing WordPress doesn’t do; load custom data
   for the author it is displaying posts of. I hope that makes sense.
 * If you have questions on what I want to do specificially, or anything else, please
   ask! I could really use the help. Thanks!
 *  Thread Starter [Lasha](https://wordpress.org/support/users/lasha/)
 * (@lasha)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376829)
 * Will this allow me to do what I am looking for?
 * [http://www.coffee2code.com/archives/2004/08/27/plugin-customizable-post-listings/](http://www.coffee2code.com/archives/2004/08/27/plugin-customizable-post-listings/)
 * Thanks.
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376834)
 * Not really. You should read carefully the instructions and description 🙂
    Actually
   I had another look at the Codex page I linked above. It seems everything you 
   have listed can be done with the methods proposed there. (Maybe except the photo–
   but I am sure there is a solution somewhere even for that.) And as I said: that
   page and ALL the resources linked from there. Yes, I know, it’s a very long reading,
   but that’s how things work…
 *  Thread Starter [Lasha](https://wordpress.org/support/users/lasha/)
 * (@lasha)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376839)
 * Say I create a page called, funtime.php and placed it within the wordpress installation
   where template tags and etc. would work if inserted. That is what I want to do.
   Create a page, and have only one tag on it which displays a single user’s posts
   just like in an archive. Nothing else. Everything else will be coded into the
   page manually using HTML and CSS.
 * If the resources in the page you linked me to will do just that, then I will 
   go back and re-read until my brain has a meltdown from it. Thanks.
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376840)
 * _Say I create a page called, funtime.php and placed it within the wordpress installation
   where template tags and etc. would work if inserted_
    That’s not a page, that’s
   a file. Furthermore, that filename is not part of the WP template files system,
   so WP does not recognize it. Of course, you can make it “WP aware” but that still
   might not do what you want.
 * _Create a page, and have only one tag on it which displays a single user’s posts
   just like in an archive._
    That will never happen: “only one tag”. For displaying
   an author’s posts (and any data about the author!!!) you need to use the `author.
   php` template file with ALL the (zillion) template tags and code for whatever
   you want to display. Just read again the Codex page I linked above.
 * You can code and style the html and css part in any template file as you want.
   That’s what the different templates are for.
 *  Thread Starter [Lasha](https://wordpress.org/support/users/lasha/)
 * (@lasha)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376841)
 * Yea, by page I meant file, and when I said a single tag, I didn’t mean literally
   only and only 1 tag. I know I have to use the author.php template.
 * Speaking of making manually created files “WP Aware”, how do I do that? Thanks!
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376844)
 * Put at the top above everything else:
    `<?php  require('./path-to-your-blog/wp-
   blog-header.php'); ?>
 *  Thread Starter [Lasha](https://wordpress.org/support/users/lasha/)
 * (@lasha)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376845)
 * And that will allow the template tags to work in the page I put that on top of,
   right?
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376847)
 * Yes, every WP function should work if you have that (with the correct path :).
 *  Thread Starter [Lasha](https://wordpress.org/support/users/lasha/)
 * (@lasha)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376855)
 * That just made my bad. With proper manipulation of the tags, and thought, I should
   get everything the way I want to, sooner or later, heh. Thanks!
 * If I have any more issues, I’ll probably post back in this thread since it’ll
   be regarding the same topic. Thanks again.

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

The topic ‘Display Posts by User’ is closed to new replies.

## Tags

 * [archives](https://wordpress.org/support/topic-tag/archives/)
 * [filter](https://wordpress.org/support/topic-tag/filter/)
 * [tags](https://wordpress.org/support/topic-tag/tags/)
 * [user](https://wordpress.org/support/topic-tag/user/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 11 replies
 * 2 participants
 * Last reply from: [Lasha](https://wordpress.org/support/users/lasha/)
 * Last activity: [19 years, 11 months ago](https://wordpress.org/support/topic/display-posts-by-user/#post-376855)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
