diff --git a/inc/template-tags.php b/inc/template-tags.php index 4c5a834..af8a087 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -127,12 +127,14 @@ function wapu_site_description() { */ function wapu_breadcrumbs() { + $path_type = ( is_singular( 'post' ) ) ? 'minified' : 'full'; + $breadcrumbs_settings = apply_filters( 'wapu_breadcrumbs_settings', array( 'wrapper_format' => '
', 'page_title_format' => '
%s
', 'show_on_front' => false, 'separator' => '|', - 'path_type' => 'minified', + 'path_type' => $path_type, 'labels' => array( 'browse' => '', ),