没有一个筛选器或操作来防止这种情况,但是
Wordpress将当前页面帖子类型的帖子类型slug添加到body标记中的类中。在你的情况下,也是页面的鼻涕虫。编辑php
如果你想用css(用你的帖子类型替换{your\\u post\\u type})
body.post-type-{your_post_type}.edit-php #post-query-submit{
display: none!important;
}
ie:对于页面,帖子类型:
body.post-type-page.edit-php #post-query-submit{
display: none!important;
}
如果要在javascript中执行此操作:
add_action( \'admin_footer\', function(){
echo <<<EOF
<script>
jQuery(document).ready(function(){
jQuery(\'body.post-type-{your_post_type}.edit-php #post-query-submit\').remove();
});
</script>
EOF;
} );
记住用自定义post类型的slug替换{your\\u post\\u type}。