<?php
$post = get_post('10');
setup_postdata($post);
the_title();
the_content();
echo get_post_meta(get_the_ID(), 'our_tel', true);
wp_reset_query();
?>
В консоли - ошибка 404 - не загружаются файлы css.
wp_enqueue_script('my_vendor_js', get_template_directory_uri().'/assets/js/foundation.js', array('jquery'));
wp_enqueue_script('my_custom_js', get_template_directory_uri().'/assets/js/app.js', array('jquery', 'my_vendor_js'));
<?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, '');
}
в коде смотрел вроде вызывается он через get_header();
if(is_front_page() || is_home()) {
//Контент для главной
} else {
//Контент для остальных страниц
}
Т.е. нужно все прописывать не $(), а JQuery()
( function( $ ) {
// Your code goes here
} )( jQuery );
. <?php echo do_shortcode( '[iscorrect]Текст[/iscorrect]' ); ?>
<?php echo do_shortcode( '[contact-form-7 id="91" title="quote"]' ); ?>
использую page builder
Возможно ли открытие сайта с этим новым шаблоном при загрузке с мобильных устройств?
Я немогу найти цикл здесь.
<?php global $i; $i = 0; while ( have_posts() ) : the_post(); ?>
<?php wc_get_template_part( 'content', 'product' ); ?>
<?php $i++; endwhile; // end of the loop. ?>
global $i; echo $i;
Неужели название категории можно вывести только в шаблоне категории?
Подскажите, что не так?
$categories = get_the_category();
if ( ! empty( $categories ) ) {
echo esc_html( $categories[0]->name );
}