你的代码将隐藏
draft
只对所有状态高于产品表的产品执行此操作,因此必须使用该代码将其隐藏。
function remove_draft_all_mine_products($views) {
unset($views['draft']);
return $views;
}
add_filter('views_edit-product', 'remove_draft_all_mine_products');
并使用下面的代码隐藏
草案
表中的帖子
function wpse_288586_hide_products($query) {
// We have to check if we are in admin and check if current query is the main query and check if you are looking for product post type
if(is_admin() && $query->is_main_query() && $query->get('post_type') == "product") {
$query->set('post_status',array('publish', 'pending', 'future', 'private', 'inherit', 'trash'));
}
}
add_action('pre_get_posts', 'wpse_288586_hide_products');