利用$wpdb自定义查询可以调用某年下的月份归档,例如调用2014年月份归档的代码如下所示。
posts WHERE `post_type` = 'post' AND `post_status` = 'publish' AND YEAR(post_date) = $year ORDER BY `month` DESC";$months = $wpdb->get_results($query);echo ''; 原文链接:https://www.f2er.com/wordpress/15286.html