パンくずリスト とは、このページのタイトル の左上に表示されている HOME > WordPress カスタマイズ 雑記 の部分のことである(当サイトでは他のページも同位置)。
single.php の編集
<!-- ぱんくず --> <section id="breadcrumb"> <ol itemscope itemtype="http://schema.org/BreadcrumbList"> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="<?php echo home_url(); ?>" itemprop="item"><span itemprop="name">~</span></a> > <meta itemprop="position" content="1" /></li>
<!– ぱんくず –> のコメントアウトの下四行目に <span itemplop=”name”>~</span> を
<span itemplop=”name”>HOME</span> か <span itemplop=”name”>「サイト名」</span> にする。
index.php の編集
<!-- ぱんくず --> <section id="breadcrumb"> <ol itemscope itemtype="http://schema.org/BreadcrumbList"> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="<?php echo home_url(); ?>" itemprop="item"><span itemprop="name">~</span></a> > <meta itemprop="position" content="1" /></li>
index.php の十二行目辺りにある <span itemplop=”name”>~</span> を
<span itemplop=”name”>HOME</span> か <span itemplop=”name”>「サイト名」</span> にする。
page.php の編集
<!--ぱんくず --> <section id="breadcrumb"> <olitemscopeitemtype="http://schema.org/BreadcrumbList"> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="<?php echo home_url(); ?>"itemprop="item"><span itemprop="name">~</span></a> > <meta itemprop="position" content="1" /></li>