如果不想在網站顯示WordPress版本號,可以把這段代碼添加到functions.php文件中,即可刪除版本號。

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