LoginSignup
8
8

More than 5 years have passed since last update.

WordPress、「New」表示

Posted at

WordPress、「New」表示

■about

WordPress、「New」表示

■code

php
<?php
//表示させたい場所に記述
$days = 7; //Newを表示させたい期間の日数
$today = date_i18n('U');
$entry = get_the_time('U');
$kiji = date('U',($today - $entry)) / 86400 ;
if( $days > $kiji ){
echo 'New!';
}
?>

■reference

WordPressでNew!を表示するパターン別4つの方法 | WordPress(ワードプレス)コミュニティ
http://wp3.jp/2011/12/25/wordpress-new/

8
8
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
8
8