我想在WooCommerce管理产品列表中只显示商店经理的待定产品,并隐藏所有垃圾
使用CSS,我可以部分隐藏我不想显示的项目:
.current,
.draft,
.publish,
.search-box,
.byorder,
.tablenav.top,
.page-title-action {
display: none;
visibility:hidden;
}
这是不够的,所以我还使用:
function exclude_other_author_products($query) {
$current_user = wp_get_current_user();
if (in_array('administrator', $current_user->shop_manager)
return $query;
if ($query->query['post_type'] == 'product' && $query->is_main_query()) {
$query->set('author__in', $current_user->ID);
}
}
add_action('pre_get_posts', 'exclude_other_author_products');
但是,这会产生一个严重错误:syntax error, unexpected token "return"
任何建议吗?
您可以使用post_status
publish
-已发布的文章或页面pending
- post正在等待审核draft
-一个处于草案状态的帖子auto-draft
-一个新创建的帖子,没有内容future
-未来发布的帖子private
-对未登录的用户不可见inherit
-修订版。看到get_children。trash
- post在垃圾桶
注意:用户角色和帖子状态都由一个数组组成。所以可以加几个,用逗号分隔
所以你得到:
function action_pre_get_posts( $query ) {
global $pagenow, $post_type;
// Targeting admin product list
if ( $query->is_admin && $pagenow === 'edit.php' && $post_type === 'product' ) {
// Get current user
$user = wp_get_current_user();
// Roles
$roles = (array) $user->roles;
// Roles to check
$roles_to_check = array( 'shop_manager' );
// Compare
$compare = array_diff( $roles, $roles_to_check );
// Result is empty
if ( empty ( $compare ) ) {
// Set "post status"
$query->set( 'post_status', array( 'pending' ) );
/* OPTIONAL
// Set "posts per page"
$query->set( 'posts_per_page', 20 );
// Set "paged"
$query->set( 'paged', ( get_query_var('paged') ? get_query_var('paged') : 1 ) );
*/
}
}
}
add_action( 'pre_get_posts', 'action_pre_get_posts', 10, 1 );