两种方法,效果都是一样的,推荐方法二。
//* Activate shortcode function in Post Title
add_filter( 'the_title', 'do_shortcode' );
//* Shortcode to display the current year in WordPress
//* shortcode: [ y e a r ]
add_shortcode( 'year' , 'current_year' );
function current_year() {
$year = date("Y");
return "$year";
}