diff --git a/include/remove_meta_tags.php b/include/remove_meta_tags.php index 77368e6..5a738ce 100644 --- a/include/remove_meta_tags.php +++ b/include/remove_meta_tags.php @@ -14,17 +14,24 @@ function () { } // remove meta tag - remove_action('wp_head', 'feed_links', 2); //サイト全体のフィード - remove_action('wp_head', 'feed_links_extra', 3); //その他のフィード - remove_action('wp_head', 'rsd_link'); //Really Simple Discoveryリンク + + if ( 'yes' == get_option( 'shifter_skip_feed', 'no' ) ) { + remove_action('wp_head', 'feed_links', 2); //サイト全体のフィード + remove_action('wp_head', 'feed_links_extra', 3); //その他のフィード + remove_action('wp_head', 'rsd_link'); //Really Simple Discoveryリンク + } + remove_action('wp_head', 'wlwmanifest_link'); //Windows Live Writerリンク //remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0); //前後の記事リンク remove_action('wp_head', 'wp_shortlink_wp_head', 10); //ショートリンク remove_action('wp_head', 'rel_canonical'); //canonical属性 //remove_action('wp_head', 'wp_generator'); //WPバージョン + remove_action('wp_head', 'rest_output_link_wp_head'); // wp-json - remove_action('wp_head', 'wp_oembed_add_discovery_links'); - remove_action('wp_head', 'wp_oembed_add_host_js'); + if ( 'yes' == get_option( 'shifter_skip_embed', 'yes' ) ) { + remove_action('wp_head', 'wp_oembed_add_discovery_links'); + remove_action('wp_head', 'wp_oembed_add_host_js'); + } }, 1 );