如何在WordPress Post中默认添加按钮

时间:2015-07-26 11:05:07

标签: php wordpress

我有一个简单的WordPress网站和一个按钮的代码片段。 我想要的是,每当我创建一个新的WordPress帖子时,我希望默认情况下我的新POST中会显示该特定的按钮代码。 我试图将它硬编码到我的WordPress帖子文件,但它无法正常工作。 这是我到目前为止所尝试的,

sys.maxsize

它适用但仅适用于文本数据而不适用于HTML。 任何指南都将不胜感激。

感谢。

1 个答案:

答案 0 :(得分:0)

您需要使用the_content过滤器,方法如下:

function add_button_to_all_posts($content) {
  return $content."If you like this post, then please consider retweeting it or sharing it on Facebook. <a href='yourlink'>button here</a>";
}

add_filter( 'the_content', 'add_button_to_all_posts' );