Hi,
i'm trying to get a year list of post for a custom post type, like the one that you can get for "normal" posts using wp_get_archives
<?php $args = array(
'type' => 'yearly',
'format' => 'html');
wp_get_archives( $args ); ?>
There's a way? Thank you