在帖子发布后向帖子添加更多文本

时间:2011-08-10 作者:Itai Sagi

我正在尝试构建一个wp插件,它基本上会为每个帖子添加一些文本,在帖子本身中,我担心codex太大了,我甚至不知道要查找什么,所以如果有人能为我指出正确的方向,我将不胜感激。

编辑:根据请求,信息应添加到数据库中的帖子文本中,在帖子末尾,它不是静态的,而是根据我在tubesite上运行的查询从tube站点随机嵌入的。

1 个回复
最合适的回答,由SO网友:Bainternet 整理而成

您最好使用the_content 过滤挂钩并将您的内容添加到“动态”帖子中,例如:

add_filter(\'the_content\',\'add_my_extra_content\');

function add_my_extra_content($content){
   $my_extra = "<h5>this is the extra content</h5>\';

   //add before post content
   // return $my_extra.$content;

   //add after post content
   return $content.$my_extra.;

}

结束

相关推荐