Just an addiction to @KrzysiekDróżdż answer.
When viewing a specific post status the url query string variable 'post_status'
, is set to the name of the status, so you can use $_GET['post_status']
to narrow the effect of @KrzysiekDróżdż code only for pending posts:
function my_edit_per_page( $result, $option, $user ) {
$status = filter_input( INPUT_GET, 'post_status', FILTER_SANITIZE_STRING );
if ( $status === 'pending' && (int) $result < 1 )
return 20; // or whatever you want
}
add_filter( 'get_user_option_edit_post_per_page', 'my_edit_per_page', 10, 3 ); // for posts
Related Posts:
- How to display by default only published posts/pages in the admin area?
- List latest posts in WP-Admin
- How to put last edited entry on top of the blog-post list?
- Getting an alphabetic post list with two letters onclick on letter
- Hiding by default specific post status on backend list?
- set role specific screen options in post summary page
- Populating a page with content from post custom fields
- Save list from a custom meta box?
- Filter Posts by Excluding Categories
- WordPress’ visual editor messing up my (nested) lists (and other things as well)
- Make Post Editor Select Number of Columns To 1 By Default
- Show certain posts in a LIST format that members have been granted access to
- List all categories with featured image from post?
- Conditionals if tags exist?
- How do you change the comment count in the back end posts list, to reflect unapproved comments, rather than all comments?
- show posts under subcategory only when in that subcategory
- List all posts, pages and custom post types in admin
- Add simple field column to the posts screen
- how can display a post on home screen without images
- Highlighting Current Category in the Archive and Feeds page
- Show 10 latest posts only from users with contributors role
- How to display list of results
- How can I globally italicize list of texts in the UI database or Posts? [closed]
- WordPress Screen Options, Help, Visual editor, Status, Visibility, Revisions, Published on and any toggled indicator don’t work for posts
- Create a Page Template Which Displays All Posts by Current User
- Last three posts not being put in order by date. How to fix this?
- List posts that are in the same category as the current post title
- Display all posts from selected month
- How to display my categories in a list (to a post, not the sidebar)?
- Dynamic archive of posts by date
- How can I enable checkboxes for custom post type posts on their post list – WordPress
- Get WordPress post content by post id
- Get page ID of page that is set as the posts page
- Get Posts Under Custom Taxonomy
- How to limit the number of posts that WP_Query gets?
- Stop WordPress Wrapping Images In A “P” Tag
- When is the ‘post_content_filtered’ column in database cleared by WordPress?
- Turn a URL into an Attachment / Post ID
- GET the excerpt by ID
- Stop WordPress automatically adding tags to post content
- Determine if page is the Posts Page
- How to get ‘post_content’ without stripping tags?
- How to add an admin notice upon post save/update
- Print Current Post Index number within Loop
- Should we trust the post globals?
- Optimize post insert and delete for bulk operations?
- Get the Current Page Number
- How do you add thumbnail support for custom post types?
- How to mark every 3rd post
- Change Posts per page count
- Keep featured content post in homepage with original order
- How to display related posts from same category?
- Can posts have parents?
- Is there a action hook for the “Empty Trash” button?
- How to end the excerpt with a sentence rather than a word?
- How do I check if I linked to a post before I delete it?
- How to change the case of all post titles to “Title Case”
- Appending content with broken in 4.4
- How to get posts published between a date and today?
- ZIP up all images displayed in a [gallery] and offer as download link
- How to detect single.php (but not single-portfolio.php)?
- How to check if post meta key exists or not in wordpress database
- How to remove a column from the Posts page
- removing inline styles from wp-caption div
- What is the use of to_ping and pinged column?
- How to use “Add link” pop up for a WordPress widget
- Remove Categories / Tags From Admin Menu
- How to retrieve text only from wp_content() not from wp_excerpt()?
- Stop WP from creating “Sample Page” and “Hello World!” post
- Where is the old post permalink slug stored?
- How to Create Editable Blocks of Text for the Homepage?
- Keyboard shortcut for updating a page or post?
- Add custom Attachment Display Setting for images
- Rewriting post slug before post save
- Apply the_title() filter in post & page title, but not in menu title
- How to Change Order of Posts in Admin?
- is it possible to get next_post_link
- Get post content by ID
- How to get post creation date?
- Update post counts (published, draft, unattached) in admin interface
- Function to execute when a post is moved to trash .
- How to get post ID of the current page/post inside a widget?
- add action only on post publish – not update
- How do you add Read more … link to posts?
- How to make comments work for a post loaded per Ajax?
- Is there an if statement that can determine if a post in the loop is the last post?
- Get current menu_order
- How to show related posts by category
- Changing the post date and time with function
- simply loop through posts
- Difference between an archive and a page listing posts
- Delete Associated Media Upon Page Deletion
- Set Default Listing “View” in Admin
- Access post from post id in URL
- Count posts within a custom post type and specific taxonomy and terms?
- How to add category to: ‘wp-admin/post-new.php’?
- Post preview mechanism architecture
- How to prevent posts from being published too close to each other?
- Passing current cookies in wp_remote_get to get Draft Post Preview
- How to hide specific Gutenberg blocks settings from users