Skip to content

Instantly share code, notes, and snippets.

@nyankichi-n-n
Created March 21, 2017 06:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nyankichi-n-n/853b326ac915a898b9b9408f732efce5 to your computer and use it in GitHub Desktop.
Save nyankichi-n-n/853b326ac915a898b9b9408f732efce5 to your computer and use it in GitHub Desktop.
[デモ会員サイト構築]17. パンくず表示(Breadcrumb NavXTの設定、カスタマイズ)
<?php //固定ページ用のパンくずリスト ?>
<div class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/">
<?php if(function_exists('bcn_display'))
{
bcn_display();
}?>
</div>
<?php //カテゴリ用のパンくずリスト?>
<div class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/">
<?php if(function_exists('bcn_display'))
{
bcn_display();
}?>
</div>
<?php //インデクスリスト用 ?>
<?php get_header(); ?>
<?php
get_template_part('breadcrumbs-page'); //固定ページパンくずリスト
?>
//
// 略
//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment