setTimeZone(new DateTimeZone('Asia/Tokyo'));
$now = $dt->format('Y-m-d H:i:s');
$temp = shortcode_atts(
array(
'on' => '0',
'off' => '0',
), $temp, 'reserve' );
$start = $temp['on'];
$end = $temp['off'];
$html = '';
if($start !== '0'):
if (strtotime($now) >= strtotime($start)) :
$html .= ''.$content.'';
endif;
elseif($end !== '0'):
if (strtotime($now) < strtotime($end)) :
$html .= ''.$content.'';
endif;
else:
$html .= '';
endif;
return $html;
}
add_shortcode('reserve', 'my_reservation');
?>
コンテンツを時間指定で編集する
ショートコードを利用して、コンテンツを時間指定で変更する。
[test id=”1″]test[/test]
【reserve on=”2016-03-30 00:00:01″]指定の時間以降に、この内容が表示される[/reserve]
【reserve of=”2016-03-30 00:00:01″]指定の時間以降に、この内容が消える[/reserve]
※ 【 は [ に書き換えてください
function.php