Display posts for each user group

Paste code in function.php in Child theme

// bài viết trong trình quản lý admin hiển thị cho từng nhóm người

function xso_posts_useronly( $wp_query ) { if ( strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false ) { if ( !current_user_can( 'level_10' ) ) { global $current_user; $wp_query->set( 'author', $current_user->id ); } }
}
add_filter('parse_query', 'xso_posts_useronly' );

// kết thúc

Last updated