找到你的wordpress后台,看上图找到functions.php这个文件夹,点进去,直接翻到末尾,把你要加的代码放到末尾就行,下面是案例代码,你自行修改里面广告内容
function feed_copyright($content) { if(is_single() or is_feed()) { $content.= ‘
转载请注明来源:’.get_the_title().’
‘; $content.= ‘
本文链接地址:’.get_permalink().’
‘; $content.= ‘
订阅本站:http://www.moke.com/f/?t=dy
‘; $content.= “”; } ret**n $content;}add_filter (‘the_content’, ‘feed_copyright’);
红色框内的文字,就是可以修改为你自己的广告内容区域!