在Wordpress内容中的第一个字符串之前搜索并添加

时间:2013-01-14 15:23:10

标签: wordpress advertisement autoblogged

我有自动 wordpress 博客。我想在内容中添加一些广告 Ex内容:

Description content
...

http://filehost1.com/file.part1.rar
http://filehost1.com/file.part2.rar
http://filehost1.com/file.part3.rar

http://filehost2.com/file.part1.rar
http://filehost2.com/file.part2.rar
http://filehost2.com/file.part3.rar

我想在每个文件主机上插入广告。看起来像这样:

Description content
...

**Ads 1**
http://filehost1.com/file.part1.rar
http://filehost1.com/file.part2.rar
http://filehost1.com/file.part3.rar

**Ads 2**
http://filehost2.com/file.part1.rar
http://filehost2.com/file.part2.rar
http://filehost2.com/file.part3.rar

请帮忙。 非常感谢

1 个答案:

答案 0 :(得分:1)

这会将您的广告代码添加到内容的末尾。您可以根据自己的意愿操纵$ content,无论您在下面的函数中返回什么内容都将是您的内容。把它放在functions.php。

add_filter( 'the_content', function($content) {
    return $content . 'Advertisement code';
});