我的管理员通知出现问题,这些通知是在Class内部生成的。出于某种原因,它显示如下:
通知应位于“Leads”标题下方,并且每页都有这样的通知。这是我的代码:
public function leads_admin_notices(){
if( ! get_option('lead_to_email') ){
echo '<div id="message" class="error below-h2">
<p>An email is required to send leads. <a href="'.admin_url('edit.php?post_type=leads&page=leads-settings').'">Edit Leads Settings</a>.</p>
</div>';
}
}
我这样称呼它:
add_action( 'admin_notices', array($this, 'leads_admin_notices') );
答案 0 :(得分:3)
删除below-h2
类应该可以解决问题