My claue-child > functions.php
<!--?php
// Подключение стилей родительской темы<br ?--> add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
function enqueue_parent_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
// Удалить сообщение Товар добавлен в корзину
add_filter( 'wc_add_to_cart_message_html', '__return_null' );
// Allow HTML in term (category, tag) descriptions
foreach ( array( 'pre_term_description' ) as $filter ) {
remove_filter( $filter, 'wp_filter_kses' );
if ( ! current_user_can( 'unfiltered_html' ) ) {
add_filter( $filter, 'wp_filter_post_kses' );
}
}
foreach ( array( 'term_description' ) as $filter ) {
remove_filter( $filter, 'wp_kses_data' );
}
// Убираем вывод Open Graph и Twitter Cards от Claue
add_action( 'wp_head', 'remove_my_action' );
function remove_my_action(){
remove_action( 'wp_head', 'jas_claue_social_meta', 0 );
}