mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
10 lines
350 B
Text
10 lines
350 B
Text
function wp_authors_posts_view( $wp_query ) {
|
|
if ( strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false ) {
|
|
if ( !current_user_can( 'edit_others_posts' ) ) {
|
|
global $current_user;
|
|
$wp_query->set( 'author', $current_user->id );
|
|
}
|
|
}
|
|
}
|
|
|
|
add_filter('parse_query', 'wp_authors_posts_view' );
|