-
Üyelik
31.03.2016
-
Yaş/Cinsiyet
33 / E
-
Meslek
Wordpress Geliştiricisi
-
Konum
İstanbul Anadolu
-
Ad Soyad
Ö** Y**
-
Mesajlar
1177
-
Beğeniler
181 / 603
-
Ticaret
53, (%100)
Aşağıdaki kodları temanızın functions.php dosyasına ekleyip yazarlar için medya kütüphanesine erişimi kısıtlayabilirsiniz.
add_filter( 'ajax_query_attachments_args', 'show_current_user_attachments' );
function show_current_user_attachments( $query ) {
$user_id = get_current_user_id();
if ( $user_id && !current_user_can('activate_plugins') && !current_user_can('edit_others_posts
') ) {
$query['author'] = $user_id;
}
return $query;
}