【发布时间】:2017-11-10 19:41:41
【问题描述】:
我想在我的 wordpress 附件页面上显示谷歌广告,该页面是在 wordpress 上发布的子页面。我只想在父帖子上显示此广告仅子帖子/页面。我想显示在内容的末尾,所以我尝试了这段代码
function wpdev_before_after($content) {
global $post;
if ($post->post_parent)
$aftercontent = 'Ad code here';
$fullcontent =$content . $aftercontent;
return $fullcontent;
}
add_filter('the_content','wpdev_before_after');
上面的代码在父子页面都显示广告,我也试过这样的代码
function wpdev_before_after($content) {
global $post;
if ($post->post_parent) {
$aftercontent = 'code here';
$fullcontent =$content . $aftercontent;
}
return $fullcontent;
}
add_filter('the_content','wpdev_before_after');
如果我在父页面上使用此代码/帖子内容不显示。请帮帮我,我希望你明白我想说什么。
【问题讨论】: