mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
7 lines
191 B
Text
7 lines
191 B
Text
add_filter( 'dgwt/wcas/search_query/args', function ( $args ) {
|
|
if ( current_user_can( 'manage_options' ) ) {
|
|
$args['post_status'] = [ 'publish', 'private' ];
|
|
}
|
|
|
|
return $args;
|
|
} );
|