国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > CMS > Wordpress > 正文

WordPress 多媒體庫只顯示當前用戶上傳的文件

2024-09-07 00:50:22
字體:
來源:轉載
供稿:網友

在 wordpress 的 media library 里只顯示當前用戶上傳的文件,也試用于 acf_form,代碼如下:

  1. //wordpress show only media user has uploaded 
  2. add_action('pre_get_posts','ml_restrict_media_library'); 
  3.  
  4. function ml_restrict_media_library( $wp_query_obj ) { 
  5.     global $current_user$pagenow
  6.     if( !is_a$current_user'WP_User') ) 
  7.         return
  8.     if'admin-ajax.php' != $pagenow || $_REQUEST['action'] != 'query-attachments' ) 
  9.         return
  10.     if( !current_user_can('manage_media_library') ) 
  11.         $wp_query_obj->set('author'$current_user->ID ); 
  12.         return

is_a() 函數已廢棄,自 PHP 5 起使用 instanceof 類型運算符,上例在 PHP 5 中會是這樣,代碼如下:

  1. //wordpress show only media user has uploaded 
  2. add_action('pre_get_posts','ml_restrict_media_library'); 
  3.  
  4. function ml_restrict_media_library( $wp_query_obj ) { 
  5.     global $current_user$pagenow
  6.     //if( !is_a( $current_user, 'WP_User') ) 
  7.     if ($current_user instanceof WP_User) 
  8.         return
  9.     if ( 'admin-ajax.php' != $pagenow || $_REQUEST['action'] != 'query-attachments' ) 
  10.         return
  11.     if ( !current_user_can('manage_media_library') ) 
  12.         $wp_query_obj->set('author'$current_user->ID ); 
  13.         return

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 黔东| 二连浩特市| 斗六市| 长宁区| 兴化市| 军事| 洞头县| 五家渠市| 桐柏县| 江源县| 清远市| 侯马市| 云浮市| 谢通门县| 津南区| 朔州市| 辛集市| 麻栗坡县| 阿瓦提县| 丁青县| 肃宁县| 甘洛县| 秭归县| 昌吉市| 桐乡市| 南康市| 淳化县| 分宜县| 青河县| 梨树县| 万山特区| 谷城县| 讷河市| 高邮市| 潜江市| 安阳市| 富蕴县| 平谷区| 垦利县| 弥渡县| 瓦房店市|