使用restrict_manage_posts
在类别/日期下拉筛选器旁边添加其他HTML内容的操作。尝试一些简单的方法,例如:
add_action( \'restrict_manage_posts\', \'my_posts_restrictions\' );
function my_posts_restrictions() {
echo \'xxxxx\';
}
这将为您提供YOUU过滤器线末端的xxxxx。请注意,这也会出现在任何自定义帖子类型上。您需要检查您的
current_screen
确保您位于Posts列表表中,而不是任何其他列表(例如页面)。