啟用yoast-breadcrumbs

LINEで送る
[`evernote` not found]

呼…成功把yoast-breadcrumbs掛起來了
只是在啟動後到\wp-content\themes\自己的佈景中
把他在官網提供的

<?php if ( function_exists('yoast_breadcrumb') ) {
	yoast_breadcrumb('<p id="breadcrumbs">','</p>');
} ?>

貼上去…

列一下我貼的檔:
archive.php
single.php
另一個category.php是取代原本的:

<p class="category">Category &#47; <?php single_cat_title(); ?></p>)

效果像是這樣:
success for yoast-breadcrumbs
不過還有個疑問就是
明明我就把yoast-breadcrumbs的參數改成:

// Load some defaults
$opt 						= array();
$opt['home'] 				= "TOP";
$opt['sep'] 				= "&raquo;";
$opt['prefix']				= "JustBlog:";
.....

他出來還是顯現:
You are here: Home » web&RIA » php » 初認識drupal..
搞不懂ㄝ…是快取嗎??
還有他那個進階用法:

<?php if ( function_exists('yoast_breadcrumb') ) {
	$breadcrumbs = yoast_breadcrumb("","",false);
} ?>

是要怎麼用阿@@