有什么方法可以将函数挂钩到WordPress中的帖子页脚(不是wp_footer)?

时间:2016-03-07 18:41:31

标签: php wordpress hook

您可以使用以下方法将功能挂钩到网站页脚:

function to_footer() {
  $content = 'I am in the footer';
  echo $content;
}

add_action('wp_footer', 'to_footer');

但在单页面浏览中是否有类似的方法在帖子的页脚(不是网站页脚)中添加功能?

1 个答案:

答案 0 :(得分:1)

您可以获得的最接近的(不更改模板文件)是

function to_footer($content) 
{
    return $content . 'I am in the footer';
}
add_action('the_content', 'to_footer');

这将在发布内容后添加您的内容

如果您不介意编辑模板,请尝试以下

function alt_footer()
{
    do_action('alt_footer');
}

在主题的functions.php中。然后在您需要的模板中调用alt_footer(),然后

function to_footer() 
{
    echo 'I am in the footer';
}
add_action('alt_footer', 'to_footer');