我有这个功能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 代码插件的简码的内容。
1 回答
阿晨1998
TA贡献2037条经验 获得超6个赞
尝试这个:
$day = date("l");
switch(date("N"))
{
case 1: //Monday
{
show_contents(); break;
}
case 2: //Tuesday
{
// other function
break;
}
// Add the other week days here if you nees (3,4,5 and 6)
case 7: //Sunday
{
// other function
break;
}
}
- 1 回答
- 0 关注
- 97 浏览
添加回答
举报
0/150
提交
取消