WordPress 发布时间超过15天的文章中展示广告

前端之家收集整理的这篇文章主要介绍了WordPress 发布时间超过15天的文章中展示广告前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

发布时间超过15天的文章中展示广告功能实现起来很简单,用PHP编辑器打开当前模版的 functions.PHP文件

复制以下代码进去:

post->ID;
}
$current_date = time();
$offset = $days *60*60*24;
$post_id = get_post($post_id);
$post_date = MysqL2date('U',$post_id->post_date);
$cunning_math = $post_date + $offset;
$test = $current_date - $cunning_math;
if($test > 0){
$return = true;
}else{
$return = false;
}
}else{
$return = false;
}
return $return;
}
原文链接:https://www.f2er.com/wordpress/15484.html

猜你在找的wordpress相关文章