Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个名为“隐藏”的自定义订单状态。
现在在 woocommmerce 订单管理面板中,我想隐藏所有订单状态为“隐藏”的订单。
有没有可用的钩子或过滤器功能来实现这一点?
提前致谢。
请在您的子主题 function.php 中使用下面的钩子。我希望这个钩子能让你实现你的目标。
add_filter('parse_query', 'modify_filter_owner');
函数 modify_filter_owner( $query )
{ 全球 $typenow;
global $pagenow; if($typenow == 'shop_order' ) { ////Custom filter text will come here }
}