今天分享一个在wordpress的标题,页脚,帖子内容中输出当前年份的短代码方法(无插件),对于需要更新当前年份的区域,使用这个方法尤其简便。比如:在我们网站的页脚中添加版权声明;在一些测评类标题中更新年份(比如[year]年最佳….)
方法很简单,只需在functions.php文件添加如下代码,然后在需要的地方使用短代码 [year] 即可:
function currentYear( $atts ){
return date('Y');
}
add_shortcode( 'year', 'currentYear' );
//在标题中使用短代码
add_filter( 'wp_title', 'do_shortcode', 10);
add_filter( 'the_title', 'do_shortcode', 10);