WordPress
1
Вклад в тег
Lorem ipsum
dolor sit amet
Lorem ipsum dolor
sit amet
// задаем нужные нам критерии выборки данных из БД
// отберем записи, которые находятся хотя бы в одной из категорий с id 2 или 6 (дочерние категории не будут учитываться)
// и выберем из них записи с ключом поля "color" и значением этого поля = "blue"
$args = array(
'category__in' => array(2,6),
'meta_key' => 'color', 'meta_value' => 'blue'
);
$query = new WP_Query( $args );
// Цикл
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
echo '<li>' . get_the_title() . '</li>';
}
} else {
// Постов не найдено
}
// Возвращаем оригинальные данные поста. Сбрасываем $post.
wp_reset_postdata();
add_action( 'init', 'mbds_products_custom_post_types' );
function mbds_products_custom_post_types() {
$labels = array(
'name' => _x( 'Продукция', 'post type general name' ),
'singular_name' => _x( 'Продукция', 'post type singular name' ),
'menu_name' => _x( 'Продукция', 'admin menu' ),
'name_admin_bar' => _x( 'Продукция', 'add new on admin bar' ),
'add_new' => _x( 'Добавить продукт', 'mbds_products' ),
'add_new_item' => __( 'Добавить новый продукт' ),
'new_item' => __( 'Новый продукт' ),
'edit_item' => __( 'Редактировать продукт' ),
'view_item' => __( 'Показать продукт' ),
'all_items' => __( 'Вся продукция' ),
'search_items' => __( 'Найти продукт' ),
'not_found' => __( 'Продукция не найдена' ),
'not_found_in_trash' => __( 'Нет продукции в корзине' )
);
$args = array(
'labels' => $labels,
'description' => __( 'Описание.' ),
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => 8,
'menu_icon' => 'dashicons-portfolio',
'supports' => array( 'title', 'thumbnail', 'page-attributes', 'editor' ),
// добавит поддержку меток к custom post type
'taxonomies' => array('post_tag')
);
register_post_type( 'mbds_products', $args );
}