如何使用WP_QUERY调用自定义帖子类型

时间:2017-06-27 作者:Evan Mendes

如何使用调用自定义帖子类型WP_Query?

这是我的自定义帖子类型。如何在代码中显示它?

<?php
// Hooking up our function to theme setup
add_action( \'init\', \'create_post_type\' );

add_theme_support(\'post-thumbnails\');
function setup_types() {
    register_post_type(\'mytype\', array(
        \'label\' => __(\'My type\'),
        \'supports\' => array( \'title\', \'editor\', \'thumbnail\', \'revisions\' ),
        \'show_ui\' => true,
    ));
}
add_action(\'init\', \'setup_types\');
?>

2 个回复
SO网友:Sebastian Kurzynowski

$args = array(\'post_type\' => \'mytype\' );                                              
$the_query = new WP_Query( $args );

// The Loop
if ( $the_query->have_posts() ) {
    echo \'<ul>\';
    while ( $the_query->have_posts() ) {
        $the_query->the_post();
        echo \'<li>\' . get_the_title() . \'</li>\';
    }
    echo \'</ul>\';
    /* Restore original Post Data */
    wp_reset_postdata();
} else {
    // no posts found
}
您可以在此处找到更多信息:https://codex.wordpress.org/Class_Reference/WP_Query

SO网友:wplearner

我希望这对你有帮助。

$args = array(
 \'post_type\'        => \'your custom post type here\',
\'posts_per_page\'   => 5,
\'category\'         => \'\',
);
$query = new WP_Query( $args ); 
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post(); 

} // end while
} // end if
wp_reset_query();

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post