UPDATE `vhosts_kp`
SET `servname` = 'yandex.com',
`alias` = 'yandex.com www.yandex.com',
`email` = 'dart@xxx.ru',
`indexfiles` = '',
`charset` = ''
WHERE `userid` = 'admin'
AND `name` = 'mysite'
<?get_header(); ?>
<?php while (have_posts()) : the_post(); ?>
<section>
<div class="top-banner bottom">
<div class="top-banner__title">
<h1><?php the_title(); ?></h1>
<?php the_field('add_video_in_news');?>
<div class="top-banner__sub-title">Когда у тебя есть джип, то так и хочется уехать туда, где грязно
и нет дорог. Именно так и поступили ребята из команды Rosan.</div>
</div>
</div>
</section>
<br>
<section>
<div class="text">
<div class="wrap">
<?php
$posts = get_posts(array(
'meta_query' => array(
array(
'key' => 'top_news',
'compare' => '==',
'value' => '1'
)
)
));
if( $posts ): ?>
<?php foreach( $posts as $post ):
setup_postdata( $post )
?>
<div class="text__small">
<?php the_post_thumbnail( $size, $attr ); ?>
</div>
<div class="text__medium">
<?php the_content(''); ?>
</div>
<?php endforeach; ?>
<?php wp_reset_query(); ?>
<?php endif; ?>
</div>
</div>
</section>
<section>
<div class="news">
<div class="wrap">
<h3>Новости/фотографии</h3>
<div class="news__left">
<?= do_shortcode('[get_news__left]'); ?>
</div>
<?= do_shortcode('[get_news__right]'); ?>
</div>
</div>
<button class="button bright news__more">ЗАГРУЗИТЬ ЕЩЁ</button>
</section>
<section>
<div class="video">
<div class="wrap">
<h3>Видео</h3>
</div>
<div class="video__cont">
<div class="wrap">
<?php the_field('add_video_in_news');?>
</div>
</div>
</div>
</section>
<?php endwhile; ?>
<?php get_footer(); ?>
add_filter( 'sanitize_title', 'dco_sanitize_title' );
function dco_sanitize_title( $string ) {
return wp_trim_words($string, 3, '');
}
но не получается после отправки обновить в БД данные
<?php echo get_field('text_after_post_programs', $taxonomy . '_' . $term_id); ?>