このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

Simple Breadcrumb

説明

Simple Breadcrumb is an easy simple plugin to let you show breadcrumbs at your page, post, and archive.
Breadcrumb is a feature which show a link of the position of the content which using parental structure.
Simple Breadcrumb is so easy to use, just install it at plugin directory and call the function at your tempalate wherever you want them to show

機能について

  • Very easy to install
  • CSS Style Customizable
  • Support default Post, Page, Parental Pages, Categories, Archive
  • Easy to use with php function and shortcode

スクリーンショット

  • This screeenhot show an example of working breadcrumb

インストール

  1. Upload the plugin files to the /wp-content/plugins/simple-breadcrumb directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the ‘Plugins’ screen in WordPress

How to display breadcrumb ?

Using PHP Function, use this php function to call the breadcrumb

sb_view_breadcrumb()

Using Shortcode, copy and paste this shortcode to view the breadcrumb

[sb-view-breadcrumb]

FAQ

1. How to display breadcrumb ?

Use this php function to call the breadcrumb

sb_view_breadcrumb()

Use this shortcode to call the breadcrumb

[sb-view-breadcrumb]
2. Showing error Call to undefined function sb_view_breadcrumb()

Use this few script before call the function to check if the function exist

if (function_exists('sb_view_breadcrumb')) {
      sb_view_breadcrumb();    
    }
3. Are the style can be customize

Of course, You can make custom Css of this plugin, simple-breadcrumb using class “sb_breadcrumb” for this plugin.
As for the structure of of this simple-breadcrumb plugin are :

  <ul class="sb_breadcrumb">
    <li>
      <a href="#">Parent</a>
    </li>
     ........
    <li>
      <a href="#">Child</a>
    </li>
  </ul>

評価

このプラグインにはレビューがありません。

貢献者と開発者

Simple Breadcrumb はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“Simple Breadcrumb” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

0.1

  • First Release Version

0.2

  • Rewrite readme.txt
  • Adding shortcode to use the breadcrumb