如果不想在网站显示WordPress版本号,可以把这段代码添加到functions.php文件中,即可删除版本号。

function wpb_remove_version() {
return '';
}
add_filter('the_generator', 'wpb_remove_version');