パンくずリストをWordPressに実装する パンくずリストを実装する前に、事前準備としてfunctions.phpに以下を記述します。 function breadcrumbs( $args = array() ){ global $post; $str =''; $defaults = array( 'id' => "breadcrumbs", 'home' => "top", 'search' => "で検索した結果", 'tag' => "タグ", 'author' => "投稿者", 'notfound' => "404 Not found", 'separator' => ' » ' ); $args = wp_parse_args( $args, $defaults ); extract( $args, EXTR_SKIP ); if(