WordPress底部版权自动调用时间和网站名

不需要手动修改Wordpress网站底部版权时间方法:

© [current_year] [site_title] All rights reserved.

网站前台效果:

Copyright © 2023 跨境电商付先生 All rights reserved.

利用的是wordpress的shortcode功能。

[current_year]   调用的是当前年

[site_title] 调用的是General Settings的Site Title

建站主题functions.php文件中添加下面代码:

add_shortcode( ‘current_year’, function() {
return date_i18n( ‘Y’ );
} );
add_shortcode( ‘site_title’, function() {
return get_option( ‘blogname’ );
} );
大部分配置位置都可生效,如果是widget不生效继续在functions.php文件中添加下面代码:
add_filter (‘widget_text’, ‘do_shortcode’);
0
分享到: