<?php wp_get_archives( 'post_type=voice&type=monthly&show_post_count=1' ); ?>

wp_get_archivesを以下の記述に変更

<?php
	$args= array(
		'type' => 'monthly',
		'echo' => false,
		'post_type' => 'voice',
		'show_post_count'  => 1
	);
	$monthly_list = wp_get_archives($args);
	$monthly_list = str_replace('/voice/', '/voice/date/', $monthly_list);
	echo $monthly_list;
?>

latest post

0