wordpress纯代码,在文章里面上下放广告
点击数: 2106
文章目录
single.php是wordpress文章的模版
如果经常修改主题,或是更新,那就要再次修改single.php
有时候,我们可以透过直接在wordpress的functions.php加入代码
实现此功能
打开你主题的functions.php
加入下面这段代码
- //wordpress纯代码,在文章里面上下放广告
- function insertAD($content) {
- if(is_single()) {
- $html = '
html语法/广告代码/图片广告
';//文章开头广告 - $content = $html . $content;
- $content.= '
html语法/广告代码/图片广告
';//文章结尾广告 - }
- return $content;
- }
- add_filter ('the_content', 'insertAD');