add_filter('get_the_archive_title', function($title){
$tmp = explode(':',$title);
if(count($tmp) < 2){
return $title;
}
return sprintf('%s %s',$tmp[1],$tmp[0]);
});
プログラムのメモとか日常のこととか
add_filter('get_the_archive_title', function($title){
$tmp = explode(':',$title);
if(count($tmp) < 2){
return $title;
}
return sprintf('%s %s',$tmp[1],$tmp[0]);
});