添加简码功能

问题描述 投票:0回答:1

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

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

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

谢谢你

wordpress function shortcode wordpress-shortcode
1个回答
0
投票

请检查

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

谢谢

© www.soinside.com 2019 - 2024. All rights reserved.