WordPress終極優化指南–禁用RSS源
RSS源主要也是用來訂閱網站文章的,但是現在基本沒人用,反而給採集文章的人帶來了便利。所以說不想使用的可以直接禁止掉。
function itsme_disable_feed() { wp_die( __( 'No feed available, please visit the <a href="'. esc_url( home_url( '/' ) ) .'">homepage</a>!' ) ); } add_action('do_feed', 'itsme_disable_feed', 1); add_action('do_feed_rdf', 'itsme_disable_feed', 1); add_action('do_feed_rss', 'itsme_disable_feed', 1); add_action('do_feed_rss2', 'itsme_disable_feed', 1); add_action('do_feed_atom', 'itsme_disable_feed', 1); add_action('do_feed_rss2_comments', 'itsme_disable_feed', 1); add_action('do_feed_atom_comments', 'itsme_disable_feed', 1);
寫入functions.php即可
禁用後我們的每個頁面還是有RSS地址的,所以我們把這個地址也刪除
remove_action( 'wp_head', 'feed_links_extra', 3 ); remove_action( 'wp_head', 'feed_links', 2 );
寫入functions.php即可