我在主题中的所有文件中搜索“search”一词,并尝试从中删除该命令entry.php
和entry-summary.php
. 这些都没有效果。我还尝试删除search.php
文件,但没有效果。
为了避免您的痛苦,如果您对WordPress提供的核心文件进行了错误的修改,那么对其进行的任何编辑都可能会破坏您的网站。此外,WordPress提供的每个新更新都会覆盖文件并将其重新添加到默认/更新状态。
要隐藏搜索,请将以下内容添加到child theme\'s function.php
:
add_action( \'wp_before_admin_bar_render\', \'wpse_254662_toolbar\', 10, 1 );
function wpse_254662_toolbar() {
# Hide search from admin toolbar
global $wp_admin_bar;
$wp_admin_bar -> remove_menu( \'search\' );
}