All Topics
Problem Filter
Hi Guys, i have insert this snippet for hide other post author, but admin columns pro filter not working now.
function hide_posts_media_by_other($query) {
global $pagenow;
if( ( 'edit.php' != $pagenow && 'upload.php' != $pagenow ) || !$query->is_admin ){
return $query;
}
if( !current_user_can( 'manage_options' ) ) {
global $user_ID;
$query->set('author', $user_ID );
}
return $query;
}
add_filter('pre_get_posts', 'hide_posts_media_by_other');
Please, you give me a suggestion for fix this?
Thank you very much,
Davide
You must be logged in to reply to this topic.