LoginSignup
0
0

More than 5 years have passed since last update.

【gnavi】最新の投稿などのブロック表示内にある日付表示を年月日ではなく月日時分で表示できるようにする

Last updated at Posted at 2014-03-13

suinさんのブログにformatTimestamp関数の記事がありました、

TRUST_PATH/modules/gnavi/blocks/block_functions.php

このファイルの

115行目の

$photo['date'] = formatTimestamp( $photo['unixtime'] , 's' ) ;

これを

$photo['date'] = formatTimestamp( $photo['unixtime'] , 'l' ) ;

※lは英語のLの小文字

上記に変更し、FTPでファイルをアップロードしたら

これで解決出来ました

他にも'l'この部分の代わりに

Y/n/j H:i
mysql
rss

こちらでもできたのが確認できました

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