• This is a Admin plugin to display published posts (pages, posts, products) by default. To see all you need to select ALL.

    I test POSTS and PAGES and (woo) PRODUCTS and it works.

    Still working with WP 5.7.2

    This is great when you’ve imported a theme with lots of sample pages. I set them all to Pending Review to keep them out of my way while I build a site.

Viewing 1 replies (of 1 total)
  • Thread Starter flyingkites

    (@flyingkites)

    You can also just add a code snippet to functions.php

    // change page link to display published pages only
    function wcs_change_admin_page_link() {
    global $submenu;
    $submenu[‘edit.php?post_type=page’][5][2] = ‘edit.php?post_type=page&post_status=publish’;
    }
    add_action( ‘admin_menu’, ‘wcs_change_admin_page_link’ );

Viewing 1 replies (of 1 total)
  • The topic ‘WordPress 5.7.2’ is closed to new replies.