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

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