Home › Forums › Back End › WP: How Do You Get A List Of Posts By A Specific Author › Re: WP: How Do You Get A List Of Posts By A Specific Author
July 4, 2009 at 4:00 pm
#60194
Member
Oooohhhhhh I gotcha now.
Here ya go!
Code:
get_results(“SELECT * FROM $wpdb->posts WHERE post_author = 1”);
echo “Posts by Author 1”;
-
foreach ($numposts as $numpost) {
- “.$numpost->post_title.”
echo “
“;
}
?>