query_posts()
, это системная функция ядра, вы сломаете основной запрос. Чтобы его поправить используйте хук pre_get_posts
add_action( 'pre_get_posts', 'set_front_page_category' );
function set_front_page_category( $query ) {
if ( $query->is_front_page() && $query->is_main_query() ) {
$query->set( 'cat', '2' );
}
}
wp_query()
и get_terms()
, они нужны для запроса записей и терминов из базы для последующей обработки или выводаthe_title()
— вывести заголовокthe_post_thumbnail()
— вывести изображение записиthe_content()
— вывести контентget_field()
и the_field()
вторым параметром принимают id записиget_field($selector, [$post_id], [$format_value]);
the_field($selector, [$post_id], [$format_value]);
get_field( 'slogan_3img', 15 );
the_field( 'slogan_3img', 15 );
get_field( 'slogan_3img', 'options' );
the_field( 'slogan_3img', 'options' );
has_term()
if ( has_term( 'pochta', $taxonomy ) ) {
// code
}
ob_start()
и вернуть его с помощью ob_get_contents()
function slider_shortcode_func( $atts ) {
ob_start(); ?>
<div class="slider">
<div class="slider-init">
<h2>Slider Content</h2>
</div>
</div>
<?php ob_get_contents();
}
add_shortcode( 'slider', 'slider_shortcode_func' );
function slider_shortcode_func( $atts ) {
$html = '';
$html .= '<div class="slider">';
$html .= '<div class="slider-init">';
$html .= '<h2>Slider Content</h2>';
$html .= '</div>';
$html .= '</div>';
return $html;
}
add_shortcode( 'slider', 'slider_shortcode_func' );
the_field()
нужно переписать в get_field()
$slider_post->ID
, функция setup_postdata()
не нужнаgetSlider()
должна возвращаться массив записей для работы, без нее ничего работать не будет $tag = new WPCF7_FormTag( $tag );
if ( empty( $tag->name ) ) {
return '';
}
$args = [
'post_type' => 'programs',
'post_status' => 'publish',
'posts_per_page' => -1,
];
$html = '';
$options = array();
// пишем текущую запись в массив $options и исключаем из выборки get_posts()
if ( is_single() && get_post_type() === 'programs' ) {
$args['post__not_in'][] = get_the_ID(),
$options[] = get_the_title();
}
// берем посты из базы
if ( $posts = get_posts( $args ) ) {
foreach ( $posts as $key => $post ) {
$options[] = $post->post_title;
}
}
// собираем <select>
if ( !empty( $options ) ) {
$html .= '<select name="' . $tag->name . '" id="' . $tag->name . '-options">';
foreach ( $options as $key => $option ) {
$html .= '<option value="' . esc_html( $option ) . '">' . esc_html( $option ) . '</option>';
}
$html .= '</select>';
}
return $html;
GET https://www.googleapis.com/youtube/v3/videos?id=sTPtBvcYkO8&key=YOUR_API_KEY&part=statistics
{
"kind": "youtube#videoListResponse",
"etag": "\"kjEFmP90GvrCl8BObMQtGoRfgaQ/XN5YXMZGQaruwTWTekZu7fQthdY\"",
"pageInfo": {
"totalResults": 1,
"resultsPerPage": 1
},
"items": [
{
"kind": "youtube#video",
"etag": "\"kjEFmP90GvrCl8BObMQtGoRfgaQ/QbzZs_aBNpzkZJxTVM7YgQeEY3g\"",
"id": "sTPtBvcYkO8",
"statistics": {
"viewCount": "3215321",
"likeCount": "17003",
"dislikeCount": "263",
"favoriteCount": "0",
"commentCount": "621"
}
}
]
}