add_filter( 'get_the_time', function( $the_time, $d ) {
if ( 'y' == $d ) {
$the_time = $the_time . '年';
}
return $the_time;
}, 10, 2 );
add_filter( 'get_the_time', function( $the_time, $d ) {
if ( 'y' == $d ) {
$the_time = $the_time . '年';
}
return $the_time;
}, 10, 2 );