显示特定日期的函数结果

我有这个功能


function show_contents(){

$post_id = 3135;

$post_content = get_post($post_id);

$content = $post_content->post_content;

$content_final =  '<p style="line-height:1; color:white; font-family:Georgia, serif;">';

apply_filters('the_content',$content);

$content_final .= '</p>';

return $content_final;

}

我想在星期一打印结果。对于打印我有这个代码


 date_default_timezone_set('Europe/Copenhagen');

 $day = date("l");

 if( $day == "Monday"){

 show_contents();

}

但我在帖子中没有看到我放置 XYZ Php 代码插件的简码的内容。


动漫人物
浏览 110回答 1
1回答

阿晨1998

尝试这个:$day = date("l");switch(date("N")){&nbsp;case 1: //Monday&nbsp;{&nbsp; &nbsp;show_contents(); break;&nbsp;}&nbsp;case 2: //Tuesday&nbsp;{&nbsp; &nbsp;// other function&nbsp; &nbsp;break;&nbsp;}&nbsp; // Add the other week days here if you nees (3,4,5 and 6)&nbsp;case 7: //Sunday&nbsp;{&nbsp; &nbsp;// other function&nbsp; &nbsp;break;&nbsp;}&nbsp;&nbsp;}
打开App,查看更多内容
随时随地看视频慕课网APP