Wordpress 函数添加短代码

Wordpress 函数添加短代码,wordpress,function,shortcode,wordpress-shortcode,Wordpress,Function,Shortcode,Wordpress Shortcode,我想创建一个函数来添加Wordpress短代码,但只在内容部分标题之后的“新闻博客”页面中添加 这是我的代码,不起作用: add_action ('__after_header' , 'add_content_after_header', 0); function add_content_after_header() { echo do_shortcode( '[ivory-search id="3668" title="Search"]' ); } 谢谢请检查header.php是否

我想创建一个函数来添加Wordpress短代码,但只在内容部分标题之后的“新闻博客”页面中添加

这是我的代码,不起作用:

add_action ('__after_header' , 'add_content_after_header', 0);
  function add_content_after_header() {
  echo do_shortcode( '[ivory-search id="3668" title="Search"]' );
}

谢谢

请检查header.php是否已正确包含,其中是否调用了wp_head。因为这个钩子使用这个函数来填充你在钩子函数中添加的任何内容

谢谢