Geen idee waarom maar bij het ontwikkelen van dit blog viel het mij op dat het Genesis Framework niet de blog pagina opneemt in de breadcrumbs. In de instellingen kan ik geen optie vinden om dit te activeren. Een optie is om dit te regelen met de Yoast SEO plugin, maar naast het feit dat ik geen fan ben van deze plugin (ik prefereer SEOPress) is het ook een beetje een overkill om hiervoor een volledige SEO plugin te installeren
Ik heb hiervoor een function geschreven die dit probleem oplost.
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
add_filter( 'genesis_single_crumb', 'wpx_add_blog_crumb', 10, 2 );
/**
* Add Blog title to Genesis Breadcrumbs
*
* @param string original breadcrumb
* @return string modified breadcrumb
*/
function wpx_add_blog_crumb( $crumb, $args ) {
if ( is_singular( 'post' ) || is_category() )
return '<a href="' . get_permalink( get_option( 'page_for_posts' ) ) . '">' . get_the_title( get_option( 'page_for_posts' ) ) .'</a> ' . $args['sep'] . ' ' . $crumb;
else
return $crumb;
}
Voeg deze code toe aan je WordPress thema functions.php.