Hi @anlino,
thanks for the support and for the beauty of your theme!
You were right!
I solved with this code:
<?php
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
wp_enqueue_style( 'child-style', get_stylesheet_uri(),
array( 'chaplin-style' ),
wp_get_theme()->get('all')
);
}
Hi Andres,
how can i enable breadcrumbs only for articles and disable for pages?
Thanks!
Davide