Linux 软件免费装

Genzel breadcrumbs

开发者 Shra
更新时间 2018年7月8日 22:26
捐献地址: 去捐款
PHP版本: 4.1 及以上
WordPress版本: 4.8
版权: GPLv2 or later
版权网址: 版权信息

标签

menu navigation link breadcrumbs breadcrumb trail simple breadcrumbs taxonomy breadcrumb

下载

详情介绍:

Breadcrumb is a way for visitors keep track thier location. The plugin implements few main ideas:

安装:

  1. Upload and extract arhive files to the /wp-content/plugins/ directory
  2. Activate the plugin through the 'Plugins' menu in WordPress
  3. Insert GenzelBreadcrumbs(); to your template files
  4. And enjoy, of course!
How to display breadcrumbs ? Open the appropriate file of your theme (typically header.php). This can be done within WP administration panel through Presentation > Theme Editor or through your text editor. Place the following code where you want the breadcrumb trail to appear. <?php if(function_exists('GenzelBreadcrumbs')) { GenzelBreadcrumbs(); }?> Save the file. Now you should have a breadcrumb trail on your WordPress powered site. To customize the breadcrumb trail you may edit the default values for the options in the administrative interface. This is located in your administration panel under Settings > Genzel Breadcrumbs. Also there you can find docs and samples.

屏幕截图:

  • Genzel breadcrumbs main settings page

升级注意事项:

1.0 It is first version. It requires at least WP v4.1 and PHP v5.3.

更新日志:

1.2 Some improvements of logic. 1.1 Added posibility attach tax, tag or category arhive page to necessary point of breadcrumbs trail. <?php GenzelBreadcrumbs(array( 'mounts' => array( array('where' => 'mypage', 'what' => 'tax:my-tax-slug-or-id', 'how' => 'current') ), )); ?> 1.0 First version, here is everything we have.