您可以通过以下方式使用WP函数和短代码:
add_shortcode( \'archives\', \'_get_archived_posts\' );
function _get_archived_posts( $atts ) {
$a = shortcode_atts( array(
\'type\' => \'yearly\',
\'limit\' => \'\',
\'format\' => \'\',
\'before\' => \'\',
\'after\' => \'\',
\'show_post_count\' => false,
\'echo\' => 0,
\'order\' => \'DESC\'
), $atts, \'filter_archives_sc\' );
return wp_get_archives($a);
}
Source