<?php get_template_part('template-parts/headers/header', 'home'); ?>function mytheme_setup() {
    add_theme_support('post-thumbnails');
    //add_image_size('gallery', '293', '203', true); //Можно добавить нужные размеры
}
add_action('after_setup_theme', 'mytheme_setup');<?php the_post_thumbnail(); ?><?php the_post_thumbnail('gallery'); ?>      <img class="foto_img" src="<?php echo get_field('foto1')['sizes']['НАЗВАНИЕ_МИНИАТЮРЫ']; ?>" alt="" />wp-content/plugins/woocommerce/templates/ в wp-content/themes/yourtheme/ с сохранением структуры вложенных папок.frontend+wordpress-dlya-nachinayushhih+category10      function my_custom_available_payment_gateways($gateways) {
    global $woocommerce;
    if (!$woocommerce || !isset($woocommerce->cart)) {
        return $gateways;
    }
    $total = WC()->cart->cart_contents_total;
    if ($total >= 100000) {
        unset($rates['cod']);
    }
    return $gateways;
}
add_filter('woocommerce_available_payment_gateways', 'my_custom_available_payment_gateways');unset($rates['cod']); скрывается способ оплаты с указанным id, в данном случае cod.