📅  最后修改于: 2023-12-03 15:35:45.045000             🧑  作者: Mango
在 WordPress 中,我们可以通过创建自定义帖子类型来扩展内容管理。自定义帖子类型可以让我们更方便地管理不同种类的内容,极大地提升 WordPress 的灵活性和扩展性。在本文中,我们将介绍如何使用 WP_Query 来查询自定义帖子类型。
WP_Query 是 WordPress 的主查询类,它允许我们查询 WordPress 内置的帖子类型,并可以通过参数来筛选查询结果。
首先,我们需要在我们的 WordPress 主题或插件中注册自定义帖子类型。以下是注册自定义帖子类型的示例代码:
<?php
// Register Custom Post Type
function custom_post_type() {
$labels = array(
'name' => _x( 'Custom Posts', 'Post Type General Name', 'text_domain' ),
'singular_name' => _x( 'Custom Post', 'Post Type Singular Name', 'text_domain' ),
'menu_name' => __( 'Custom Posts', 'text_domain' ),
'name_admin_bar' => __( 'Custom Post', 'text_domain' ),
'archives' => __( 'Custom Post Archives', 'text_domain' ),
'attributes' => __( 'Custom Post Attributes', 'text_domain' ),
'parent_item_colon' => __( 'Parent Custom Post:', 'text_domain' ),
'all_items' => __( 'All Custom Posts', 'text_domain' ),
'add_new_item' => __( 'Add New Custom Post', 'text_domain' ),
'add_new' => __( 'Add New', 'text_domain' ),
'new_item' => __( 'New Custom Post', 'text_domain' ),
'edit_item' => __( 'Edit Custom Post', 'text_domain' ),
'update_item' => __( 'Update Custom Post', 'text_domain' ),
'view_item' => __( 'View Custom Post', 'text_domain' ),
'view_items' => __( 'View Custom Posts', 'text_domain' ),
'search_items' => __( 'Search Custom Post', 'text_domain' ),
'not_found' => __( 'Not found', 'text_domain' ),
'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),
'featured_image' => __( 'Featured Image', 'text_domain' ),
'set_featured_image' => __( 'Set featured image', 'text_domain' ),
'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),
'use_featured_image' => __( 'Use as featured image', 'text_domain' ),
'insert_into_item' => __( 'Insert into Custom Post', 'text_domain' ),
'uploaded_to_this_item' => __( 'Uploaded to this Custom Post', 'text_domain' ),
'items_list' => __( 'Custom Posts list', 'text_domain' ),
'items_list_navigation' => __( 'Custom Posts list navigation', 'text_domain' ),
'filter_items_list' => __( 'Filter Custom Posts list', 'text_domain' ),
);
$args = array(
'label' => __( 'Custom Post', 'text_domain' ),
'description' => __( 'A custom post type', 'text_domain' ),
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'menu_icon' => 'dashicons-admin-post',
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array('slug' => 'custom-post'),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => 5,
'supports' => array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
);
register_post_type( 'custom-post', $args );
}
add_action( 'init', 'custom_post_type', 0 );
?>
查询自定义帖子类型与查询 WordPress 内置的帖子类型基本相同。以下是查询自定义帖子类型的示例代码:
<?php
$custom_post_type_query = new WP_Query( array(
'post_type' => 'custom-post',
'posts_per_page' => 10,
) );
if ( $custom_post_type_query->have_posts() ) {
while ( $custom_post_type_query->have_posts() ) {
$custom_post_type_query->the_post();
// Output results
}
} else {
// No results
}
// Restore original post data
wp_reset_postdata();
?>
在上述代码中,我们使用 WP_Query
类来查询自定义帖子类型。我们可以通过 post_type
参数来指定帖子类型。除此之外,我们还可以使用其他参数来筛选查询结果。
以上是使用 WP_Query 查询自定义帖子类型的简要介绍。使用自定义帖子类型可以更好地扩展 WordPress 的内容管理,提高网站的灵活性和扩展性。通过学习本文的内容,相信您已经掌握了 WP_Query 查询自定义帖子类型的基本技巧。