define( 'EMPTY_TRASH_DAYS', false ); // корзина отключена
define( 'EMPTY_TRASH_DAYS', true ); // корзина включена. По умолчанию в WP
define( 'EMPTY_TRASH_DAYS', 30 ); // корзина включена и записи в ней будут храниться 30 дней, после чего будут
<?php the_field('image');?>
<?php the_field('image' , $cat);?>
<div class="faq-wrapper">
<?php $term = get_queried_object(); ?>
<div class="faq-col col">
<?php if (have_rows('faq', $term)): ?>
<?php while (have_rows('faq', $term)) : the_row(); ?>
<div class="faq-item">
<h4 class="faq-title">
<?php the_sub_field('question'); ?>
</h4>
<p class="faq-content">
<?php the_sub_field('answer'); ?>
</p>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<div class="picture">
<img src="<?php bloginfo('template_url')?>/images/dest/faq.png" alt="">
</div>
</div>
<link rel="stylesheet" href="<?php bloginfo('template_url')?>/css/new-header.css" type="text/css"/>
// правильный способ подключить стили и скрипты
add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
// add_action('wp_print_styles', 'theme_name_scripts'); // можно использовать этот хук он более поздний
function theme_name_scripts() {
wp_enqueue_style( 'style-name', get_stylesheet_uri() );
wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true );
}