// задаем нужные нам критерии выборки данных из БД
$args = array(
'posts_per_page' => 5,
'post_type' => 'post',
);
$query = new WP_Query( $args );
// Цикл
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
get_template_part( 'template-parts/content', get_post_type() );
}
} else {
// Постов не найдено
get_template_part( 'template-parts/content', 'none' );
}
// Возвращаем оригинальные данные поста. Сбрасываем $post
wp_reset_postdata();
wp_add_inline_script()
или добавить еще один js-файл и подключить его. Попробуйтеfunction creamin_load_scripts() {
wp_enqueue_script( 'exdent-script', get_theme_file_uri( '/assets/js/jquery.exdent.min.js' ), array( 'jquery' ), null, true );
$exdent_init = "jQuery(function($) {
$('blockquote, q').exdent({
by: '.5em'
});
});";
wp_add_inline_script( 'exdent-script', $exdent_init );
}
add_action( 'wp_enqueue_scripts', 'creamin_load_scripts' );
wp_enqueue_scripts
указывать не нужно // добавляем дополнительный текст в контент
add_filter( 'the_content', 'add_custom_text_to_content' );
function add_custom_text_to_content( $content ) {
$before = '<p>Custom text before content</p>';
$after = '<p>Custom text after content</p>';
return $before . $content . $after;
}
if ( in_category('fruit') ) {
get_template_part( 'templates/single', 'fruit' );
} elseif ( in_category('vegetables') ) {
get_template_part( 'templates/single', 'vegetables' );
} else {
get_template_part( 'templates/single', 'common' );
}
.map
[class*=ymaps-2][class*=-ground-pane]
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale")
-webkit-filter: grayscale(100%)
-moz-filter: grayscale(100%)
-ms-filter: grayscale(100%)
-o-filter: grayscale(100%)