WordPress 101 – Part 16: How to print the Blog Info
学习视频参考:https://www.youtube.com/watch?v=wGJ0AgceWS4&list=PLriKzYyLb28nUFbe0Y9d-19uVkOnhYxFE&index=16
1.通过bloginfo函数显示站点名称
<?php bloginfo(‘name’); ?>
2.去除Wordpress版本号显示
/**
* 去除Wordpress版本号显示
*/
function remove_wp_version() {
return '';//传值也不显示 <meta name="generator" content="WordPress 5.2.9">
}
add_filter('the_generator', 'remove_wp_version');