Remove vestiges of what_to_show. Props filosofo. fixes #9815

git-svn-id: https://develop.svn.wordpress.org/trunk@11318 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2009-05-13 22:28:56 +00:00
parent 765f9798d4
commit fc80cdec6b
9 changed files with 5 additions and 13 deletions

View File

@@ -823,7 +823,7 @@ function wp_edit_posts_query( $q = false ) {
$posts_per_page = 15;
$posts_per_page = apply_filters('edit_posts_per_page', $posts_per_page);
wp("post_type=post&what_to_show=posts$post_status_q&posts_per_page=$posts_per_page&order=$order&orderby=$orderby");
wp("post_type=post&$post_status_q&posts_per_page=$posts_per_page&order=$order&orderby=$orderby");
return array($post_stati, $avail_post_stati);
}