<?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(); ?>
использую page builder
Подскажите пожалуйста, как мне узнать с помощью Inspect Element, в каком именно файле прописаны слова View my Wishlist?
Я конечно могу взять Notepad++ и найти те 9 файлов где это слово прописано.
img {
max-width: 120%;
margin-left: -10%;
margin-right: -10%;
height: auto !important;
}
<?php
if($newCat == ""){
$cathotela = "88";
} else{
$cathotela = $newCat;
}
?>
<?php $posts = get_posts(array(
'category' => $cathotela,
'orderby' => 'date',
'numberposts' => 3,
'category__in' => array(2,3,4)
)); ?>
<?php if ($posts) : ?>
<?php foreach ($posts as $post) : setup_postdata ($post); ?>
<div class="image_sp col-sm-3 col-xs-12 imsp_el1">
<a href="<?php echo get_permalink(); ?> ">
<?php the_post_thumbnail() ?></a>
<div class="hdsp_text">
<h3><?php the_title(); ?></h3>
</div>
</div>
<?php
endforeach;
wp_reset_postdata();
?>
<?php endif; ?>
$args = array(
'orderby' => 'date',
'numberposts' => 3,
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'category',
'field' => 'id',
'terms' => $cathotela, //array( '53', '115', '27' )
'operator' => 'IN'
),
array(
'taxonomy' => 'category',
'field' => 'id',
'terms' => '88'
)
)
);
$posts = get_posts($args);
<?php
$cur_terms = get_the_terms($post->ID, 'metki');
if (is_array($cur_terms) && !is_wp_error($cur_terms)) {
foreach ($cur_terms as $cur_term) {
$term_link = get_term_link((int) $cur_term->term_id, $cur_term->taxonomy);
// If there was an error, continue to the next term.
if (is_wp_error($term_link)) {
continue;
}
echo '<a href="' . esc_url($term_link) . '">' . $cur_term->name . '</a> ';
}
}
?>
$place = get_field('place_near');
плагин "Advanced Custom Fields" сделать такого не может
add_filter( 'wp_insert_post_data', 'filter_post_data', 99, 2 );
function filter_post_data( $data , $postarr ) {
$post_content = $data['post_content'];
$data['post_content'] = '[restabs]' . $post_content . '[/restabs]';
return $data;
}
function my_sanitize_content( $content ) {
return '[restabs]' . $content . '[/restabs]';
}
add_filter( 'content_save_pre', 'my_sanitize_content' );