$queried_object = get_queried_object();
if ( is_tax( 'projects' ) && isset( $queried_object->term_id ) ) {
$query = new WP_Query( [
'post_type' => 'portfolio',
'posts_per_page' => 10,
'tax_query' => [
[
'taxonomy' => 'projects',
'field' => 'id',
'terms' => $queried_object->term_id,
],
]
] );
}
$classes[] = 'project-item col-lg-4 col-md-6 col-sm-12';
$project_taxes = get_the_terms( $post->ID, 'project_tax' );
if( is_array( $project_taxes ) ) {
foreach ( $project_taxes as $key => $project_tax ) {
$classes[] = $project_tax->slug;
}
}
echo '<div class="' . implode( ' ', $classes ) . '">';
echo '<h2>' . $post->post_title . '</h2>';
echo '</div>';
PHP-код, встроенный в страницу будет разбирать строку GET-запроса от API сервиса бронирования и, на основании данных из запроса, формировать сообщение о результате бронирования.
if ( $condition ) {
get_template_part( 'templates/thankyou' );
} else {
get_template_part( 'templates/common' );
}
the_content
add_filter( 'the_content', 'custom_content' );
function custom_content( $text ) {
$ads = '<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1452282254312739" crossorigin="anonymous"></script>';
return $ads . $text;
}
if ( get_post_type() === 'post' ) {
return $ads . $text;
} else {
return $text . $ads;
}
jQuery(document).ready(function ($) {
$('a.tab').on('click', function (e) {
$.ajax({
type: 'POST',
url: wpz_ajax_obj.ajaxurl, // Путь к файлу admin-ajax.php
data: {
'action': 'wpz_ajax_request', // Событие к которому будем обращаться
'post_type': $(e.currentTarget).attr('data-type'), // Передаём тип записи
'security': wplb_ajax_obj.nonce, // Используем nonce для защиты
}
})
e.preventDefault();
});
});
wp_send_json_success()
function wpz_ajax_request() {
if ( isset( $_POST ) ) {
// Проверяем nonce, а в случае если что-то пошло не так, то прерываем выполнение функции
if ( !wp_verify_nonce( $_POST['security'], 'wpz-nonce' ) ) {
wp_die( 'Базовая защита не пройдена' );
}
// заказываем посты из базы
if ( isset( $_POST['post_type'] ) ) {
$args = array(
'post_type' => sanitize_text_field( $_POST['post_type'] ),
'posts_per_page' => 1,
);
$post_query = new WP_Query( $args );
if ( $post_query ) {
# если записи есть, возвращаем в wp_send_json_success() html-постов
} else {
# если записей нет, возвращаем в wp_send_json_success() информацию о том, что их нет
}
} else {
wp_send_json_error();
}
} // end if isset( $_POST )
wp_die();
}
register_post_type()
или Custom Post Type UI14:00 — 21:00; 11:00 — 21:00; 11:00 — 21:00; 11:00 — 21:00; 11:00 — 22:00; 09:00 — 22:00; 09:00 — 21:00
mon="14:00 — 21:00" tue="11:00 — 21:00" wed="11:00 — 21:00" thu="11:00 — 21:00" fri="11:00 — 22:00" sat="09:00 — 22:00" sun="09:00 — 21:00"
$html = str_get_html( get_the_content() );
$links = $html->find( 'a' );
foreach ( $links as $key => $link ) {
var_dump( $link->href );
}
unset( $html );
$link->outertext = '[link]' . $link->outertext . '[/link]';
wp_update_post()
get_field()
вторым параметром принимает $post_id — ID записи из которой брать данныеget_field($selector, [$post_id], [$format_value]);
the_field( 'header_title', 'option' );