wordpress怎么在发布时间超过15天的文章中展示广告?
WordPress发布时间超过15天的文章中展示广告
推荐:《wordpress教程》
假设,我们需要在发布时间超过15天的文章中展示广告,我们今天只需要简单的设置一下代码,就能完成。
第一步:
功能实现起来很简单,用PHP编辑器打开当前模版的functions.php文件。
复制以下代码进去:
代码如下:
functionis_old_post($post_id=null){$days=15;global$wp_query;if(is_single()||is_page()){if(!$post_id){$post_id=$wp_query->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;}