:first-child
esc_html
все равно нужно оставить. function vpank_replace_jquery() {
wp_deregister_script('jquery');
wp_enqueue_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js', array(), null, true);
}
add_action('wp_enqueue_scripts', 'vpank_replace_jquery');
href="<?php echo esc_url_raw( home_url( '/' ) ); ?>"
span
the_content()
с блоговой страницы home.add_filter('the_content', 'remove_shortcode_from_home');
function remove_shortcode_from_home($content) {
if ( is_home() ) {
$content = strip_shortcodes( $content );
}
return $content;
}
function set_checked_wc_terms( $terms_is_checked ) {
return true;
}
add_filter( 'woocommerce_terms_is_checked_default', 'set_checked_wc_terms', 10 );
.terms > label.checkbox{
display:none;
}