Modification fonction Child theme
/** rendre les liens plus court */add_filter( ‘nav_menu_link_attributes’, function( $atts, $item, $args, $dept ) { if ( ‘/’ == substr( $atts[‘href’], 0, 1 ) ){ $atts[‘href’] = site_url() . $atts[‘href’]; } return $atts;}, 20, 4 ); /** cacher titre par défaut **/add_filter( ‘cryptlight_show_singular_title’, ‘__return_false’ );