$meta = get_post_meta($post->ID, $field['id'], true);
$meta = get_post_meta($post->ID, $field['id'], true);
$meta = esc_attr($meta);
function action_function_name_11() {
// Проверки и прочее
wp_safe_redirect( $location, 301);
}
add_action( 'template_redirect', 'action_function_name_11' );
Затык в том, что события самого календаря идут отдельной таксономией вне потока вывода query_posts() и никак не связаны с остальными постами, не знаю как можно было бы b[ совместить.можно воспользоваться крючком
pre_get_posts
add_action('pre_get_posts', 'get_posts_search_filter');
function get_posts_search_filter( $query ){
if ( ! is_admin() && $query->is_main_query() && $query->is_search ) {
$query->set('post_type', array('post', 'movie') );
}
}
add_action('pre_get_posts', 'filter');
function filter($query)
{
if (!is_admin() && $query->is_main_query() && !is_single() &&
((isset($_GET['pa_class']) || isset($_GET['pa_size']) || isset($_GET['pa_material']))
)
) {
if (is_woocommerce()) {
if ((isset($_GET['pa_class']) && !empty($_GET['pa_class'])) ||
(isset($_GET['pa_size']) && !empty($_GET['pa_size'])) ||
(isset($_GET['pa_color']) && !empty($_GET['pa_color'])) ||
(isset($_GET['pa_material']) && !empty($_GET['pa_material']))
) {
if ((isset($_GET['pa_class']) && !empty($_GET['pa_class']))) {
$tax[] = array(
'taxonomy' => 'pa_class',
'field' => 'slug',
'terms' => $_GET['pa_class']
);
}
if ((isset($_GET['pa_color']) && !empty($_GET['pa_color']))) {
$tax[] = array(
'taxonomy' => 'pa_color',
'field' => 'slug',
'terms' => $_GET['pa_color']
);
}
if ((isset($_GET['pa_size']) && !empty($_GET['pa_size']))) {
$tax[] = array(
'taxonomy' => 'pa_size',
'field' => 'slug',
'terms' => $_GET['pa_size']
);
}
if ((isset($_GET['pa_material']) && !empty($_GET['pa_material']))) {
$tax[] = array(
'taxonomy' => 'pa_material',
'field' => 'slug',
'terms' => $_GET['pa_material']
);
}
$query->set('tax_query', $tax);
}
}
} elseif (is_search()) {
$query->set('post_type', 'product');
}
}
$args = array(
'post_parent' => 740,
'order' => 'DESC',
'post_mime_type' => 'image',
'post_type' => 'attachment',
'numberposts' => 1,
'orderby' => 'ID'
);
$attachments = get_children( $args );
if( $attachments ){
foreach( $attachments as $attachment ){
$image_src = wp_get_attachment_image_src( $attachment->ID, 'thumbnail' )[0] ?: wp_get_attachment_image_src( $attachment->ID, 'full' )[0];
$image_desc = $attachment->post_content ?: $attachment->post_title;
echo '<img src="'. $image_src .'" alt="'. esc_attr( $image_desc ) .'" class="current">';
}
}