Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

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

#60194
TheDoc
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) {
    echo “

  • “.$numpost->post_title.”
  • “;
    }

?>