在所有帖子页面的自定义帖子类型列表上方添加信息 时间:2014-01-13 作者:Ronnieinspain 好吧,这听起来像是一个相当令人困惑的标题,让我解释一下。我已经创建了一个自定义帖子类型(CPT),我想在其列表上方添加一些关于该帖子类型的帖子的摘要信息(过滤器和批量操作按钮所在的位置),所涉及的页面将是:http://www.example.com/wp-admin/edit.php?post_type={cpt} 这个有钩子吗?因为我真的不知道该怎么称呼这个区域,所以我没有找到任何东西进行进一步的搜索。 1 个回复 最合适的回答,由SO网友:Milo 整理而成 您可以使用admin_notices 为此采取的行动:function wpa_admin_notice() { $screen = get_current_screen(); if( \'your_post_type\' == $screen->post_type && \'edit\' == $screen->base ){ ?> <div class="updated"> <p>Here is some text</p> </div> <?php } } add_action( \'admin_notices\', \'wpa_admin_notice\' ); 更改your_post_type 无论你的自定义post-type slug是什么。另请参见get_current_screen 有关该函数的更多信息。 结束 文章导航