#author("2019-11-26T15:28:37+09:00","","")
#navi(第四演出室)


*年齢計算 [#i39d6642]

-「外観」→「テーマ編集」→functions.phpに追加

 /*
 誕生日から年齢を算出
 [get_age birth="19850101"]
 */
 function sc_get_age($atts) {
     extract(shortcode_atts(array(
         'birth' => '',
     ), $atts));
  
    return (int)((date('Ymd') - $birth)/10000);
 }
 add_shortcode('get_age', 'sc_get_age');


 [get_age birth="19850101"]才


フッターのテンプレートの該当位置に下のコードを挿入してください。

 Copyright© 2011–<?php echo date('Y'); ?> <?php bloginfo('name'); ?> All rights reserved.


//https://plusblog.jp/6864/


#navi(第四演出室)

トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS