ショートコードを登録
形式: add_shortcode( $tag , $func )
| 引数 | 説明 | 
| $tag | ショートコード名 | 
| $func | 実行するコールバック関数名 | 
| 戻り値 | 無し | 
例: 関数、”xxxxx_xxx”をショートコード、”aaaaa_aaa”で呼び出す場合
//sample: add_shortcode
function xxxxx_xxx () {
    wp_list_categories('title_li=&show_count=1&use_desc_for_title=1&depth=0&echo=0');
    ........
    ........
    return
}
add_shortcode('aaaaa_aaa', 'xxxxx_xxx');