If I have a user’s ID, what’s the best way for me to get the title of that user’s most recent post?
Leave a Reply
You must be logged in to post a comment.
If I have a user’s ID, what’s the best way for me to get the title of that user’s most recent post?
You must be logged in to post a comment.
You just set the ‘author’ parameter in a
WP_Query
query orget_posts
(which accepts the same parameters):(Note the ‘orderby’ and ‘order’ here are redundant because they are set to their default values, but you get the idea)
The best way would be a custom SQL query, but you can simply use the native functions like
get_posts()
and that would be just fine as well;