现在,我使用我在下面的问题中描述的技巧:Steps to Take to Hide the Fact a Site is Using WordPress?.
在此之前,我使用Roots Theme method, 这就是我认为您正在寻找的:
这篇文章包含关于如何清理WordPress代码输出的信息。下面描述的方法不会阻止实际的指纹识别,不应视为任何类型的安全措施。
请注意,它不适用于多站点或子主题。
我将在这里复制我为使用根方法所做的文档:
刷新永久链接转到/wp-admin/options-permalink.php
然后单击保存更改。
从CDN加载脚本,而不是从/wp-includes/
add_action( \'wp_enqueue_scripts\', \'wpse_76593_scripts_custom\' );
function wpse_76593_scripts_custom() {
wp_deregister_script(\'jquery\');
wp_register_script(\'jquery\', \'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js\', false, \'1.7.1\', true);
wp_enqueue_script( \'jquery\' );
}
在主题中搜索所有样式和脚本寄存器和队列。
样式。在名为“style.css”的文件夹中创建一个新文件,打开主题的style.css
选择下面的所有声明theme file header在文件中剪切并粘贴/css/style.css
简而言之:/your-theme/styles.css
将仅包含标题信息,并且/your-theme/css/styles.css
将包含所有样式
更改所有出现的url(\'fonts/
具有url(\'../fonts/
更改所有出现的images/
具有../images/
标题。php更改样式表链接
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( \'stylesheet_url\' ); ?>" />
至
<link rel="stylesheet" type="text/css" media="all" href="<?php echo get_template_directory_uri(); ?>/css/style.css" />
所有主题文件搜索:
get_bloginfo(\'template_url\')
get_bloginfo(\'template_directory\')
并替换为:get_template_directory_uri()
测试
不确定其他浏览器,但Safari Activity Window 非常适合检查所有加载的文件及其URL。根据主题的复杂性,必须采取额外的步骤。