【发布时间】:2016-12-25 09:24:52
【问题描述】:
我正在尝试在 WordPress 中查看自定义帖子类型的帖子并坚持使用下面的代码。
$args = array(
'type' => 'theslider',
'orderby' => 'date',
'order' => 'DESC',
'cat' => 23
);
$lasts = new WP_Query( $args );
if( $lasts->have_posts() ):
while( $lasts->have_posts() ): $lasts->the_post();
the_title( sprintf('<a href="%s"><div class="pt10 title">', esc_url( get_permalink() ) ),'</div></a>' );
endwhile;
endif;
wp_reset_postdata();
此代码适用于默认帖子类型。并且自定义帖子类型功能在管理面板中运行良好。
如何在 WordPress 主页上查看自定义帖子类型的帖子。
【问题讨论】: