如何从 WP 标头中删除这两个链接?
<link rel='https://api.w.org/' href='http://xxx/wp-json/' />
<link rel="canonical" href="http://xxx/" />
我不知道他们是为了什么。在我看来,它们只是多余的。
可能吗?
如何从 WP 标头中删除这两个链接?
<link rel='https://api.w.org/' href='http://xxx/wp-json/' />
<link rel="canonical" href="http://xxx/" />
我不知道他们是为了什么。在我看来,它们只是多余的。
可能吗?
Metarel="canonical"
是按功能打印的rel_canonical
,插入到wp_head
操作中wp-includes/default-filters.php
(WP 4.4 中的第 237 行),所以
remove_action( 'wp_head', 'rel_canonical' );
应该这样做。
对于 api (也插入该文件,第 213 行),代码将是
remove_action( 'wp_head', 'rest_output_link_wp_head' );
我不知道 api 元是什么意思,但我很确定规范应该可以帮助您进行 SEO。