在functions中自定义一个年份短代码

建站知识 2025年3月17日 23

在functions.php中自定义一个年份短代码:

function display_current_year() {
    return date('Y');
}
add_shortcode('current_year', 'display_current_year');

在文章或页面中使用:

<p>版权所有 &copy; [current_year] 网站名称</p>

推荐模板