0
1

More than 3 years have passed since last update.

Wordpress固定ページに文章を予約公開する

Posted at

記事を予約投稿するのではなく、すでに公開している記事に文章を予約し公開するための方法。

特定の時間に文章を追加表示する。ムダにページを増やさずにリアルタイムな更新が可能です。

利用例:株式投資やニュースを1ページ内で順次表示するなど

page.php
<?php if ( current_time('Y/m/d H:i:s') >= '2020/03/08 13:15:00' ) { ?>
  <h3>これはサンプルです</h3>
  <p>ここに文章を記述します</p>
<?php } ?>
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1