如何在函数后添加内容

时间:2017-11-22 作者:mrKC.988

是否有任何可能的方法可以运行一些代码,以便在模板文件中的特定函数之后立即输出?

例如,我想在一篇文章中添加作者简历。调用函数后的php模板bur(do_something() ).

这可能吗?

据我所知,您只能在内容中和内容之前添加内容。

非常感谢你的帮助。

1 个回复
SO网友:Djb

您可以将此示例放入函数中。php文件:

function insertContent($content) {

   $content.= "<div>";
   $content.="additional content";
   $content.= "</div>";

   return $content;
}
// put this line in your custom function or in your template file (single)
add_filter (\'the_content\', \'insertContent\');
再见!

结束

相关推荐