List of all posts by author
-
Trying to get a list with all posts made by one author to post on their overview page, but somehow what I have so far doesn’t work.
Can someone help me please?
$numposts = $wpdb->get_results("SELECT * FROM wp_posts WHERE post_author = $user->id ORDER BY post_date DESC "); var_dump($numposts); echo "Mijn dagboek berichten"; echo "<ul>"; foreach ($numposts as $numpost) { echo "<li>".$numpost->post_title."</li>"; } echo "</ul>";
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘List of all posts by author’ is closed to new replies.