自定义帖子类型的存档链接 时间:2020-04-27 作者:jeno 如何显示自定义帖子类型的存档列表(过去6个月左右)?类似这样:https://blog.evolveformazione.com/ 1 个回复 SO网友:jeno 对于仍在为此挣扎的任何人,这里有一个解决方案:$args = array( \'post_type\' => \'your_custom_post_type\', \'post_status\' => \'publish\' ); $query = new WP_Query($args); ?> 然后将其输出到模板中的任何位置,如下所示://Output <?php wp_get_archives($args); ?> 文章导航