Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nathaningram/6b3a5ff133226bfe6808 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/6b3a5ff133226bfe6808 to your computer and use it in GitHub Desktop.
// Make Private Pages show in Parent Page List
function bla_handle_privates_adding( $args ) {
if ( ! current_user_can( 'read_private_pages' ) ) {
return $args;
}
$defaults = array( 'post_status' => 'publish,private' );
return wp_parse_args( $args, $defaults );
}
add_filter( 'wp_page_menu_args', 'bla_handle_privates_adding' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment