1 回答
TA贡献1829条经验 获得超13个赞
挂钩manage_product_posts_custom_column用于操作管理产品列表中的列内容。
因此,您需要改为使用以下方法从管理产品列表中更改产品查询:
add_action( 'pre_get_posts', 'admin_pre_get_posts_product_query' );
function admin_pre_get_posts_product_query( $query ) {
global $pagenow;
// Targeting admin product list
if( is_admin() && 'edit.php' == $pagenow && isset($_GET['post_type']) && 'product' === $_GET['post_type'] ) {
$query->set( 'author', get_current_user_id() ); // Only displays the products created by the current user
}
}
代码进入您的活动子主题(或活动主题)的functions.php文件。测试和工作。
现在您将只有属于当前用户 ID 的产品,因为我们按登录作者过滤产品。
允许特定用户角色查看所有产品:
如果您只想允许“管理员”用户角色查看所有产品,您将在代码中插入global $pagenow;以下几行:
// Allow administrator user roles
if( current_user_can( 'administrator' ) ) return;
- 1 回答
- 0 关注
- 113 浏览
添加回答
举报