수행해야 할 일반적인 원칙은 다음과 같습니다.
- 에 훅
wpseo_breadcrumb_links
또는 wp_seo_get_bc_ancestors
API 필터 .
- 을 사용하여 블로그 를 WordPress SEO Breadcrumb
$links
배열에 추가하십시오 array_splice
.
이것을 테마에 넣으십시오 functions.php
.
/**
* Conditionally Override Yoast SEO Breadcrumb Trail
* http://plugins.svn.wordpress.org/wordpress-seo/trunk/frontend/class-breadcrumbs.php
* -----------------------------------------------------------------------------------
*/
add_filter( 'wpseo_breadcrumb_links', 'wpse_100012_override_yoast_breadcrumb_trail' );
function wpse_100012_override_yoast_breadcrumb_trail( $links ) {
global $post;
if ( is_home() || is_singular( 'post' ) || is_archive() ) {
$breadcrumb[] = array(
'url' => get_permalink( get_option( 'page_for_posts' ) ),
'text' => 'Blog',
);
array_splice( $links, 1, -2, $breadcrumb );
}
return $links;
}
참고 : 사이트 또는 요구에 맞는 코드를 업데이트해야 할 수도 있지만 일반적인 생각은 동일합니다.