我有这个功能
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 代码插件的简码的内容。
阿晨1998