
內容簡介
CC-Clean-Head-Tags 插件可以移除以下元素:
RSD / EditURI 連結
WLW Manifest 連結
RSS 訂閱連結
上一篇和下一篇文章連結
短網址
WP-API 連結
此外,它還可以從以下元素中刪除 WP Generator Meta 版本號碼:
html
xhtml
atom
rss2
rdf
comment
export
另外,此插件也可以從樣式和腳本連結中移除版本號碼。
提示和技巧
你可以使用以下內建的過濾器,排除特定樣式和/或腳本的版本號碼移除:
Clearcode\Clean_Head_Tags\Style
Clearcode\Clean_Head_Tags\Script
例如,像這樣:
add_filter( ‘Clearcode\Clean_Head_Tags\Style’, function( $clean, $src, $handle ) {
return ! in_array( $handle, [‘style’] );
}, 10, 3 );
外掛標籤
開發者團隊
原文外掛簡介
The CC-Clean-Head-Tags plugin removes:
RSD / EditURI Link
WLW Manifest Link
RSS Feed Links
Next & Prev Post Links
Shortlink URL
WP-API Links
WP Generator Meta from:
html
xhtml
atom
rss2
rdf
comment
export
Additionally it removes version numbers from style and script links.
Tips & Tricks
You can exclude version number removal from certain style and/or script using these built-in filters:
Clearcode\Clean_Head_Tags\Style
Clearcode\Clean_Head_Tags\Script
For example like this:
add_filter( ‘Clearcode\Clean_Head_Tags\Style’, function( $clean, $src, $handle ) {
return ! in_array( $handle, [‘style’] );
}, 10, 3 );
