@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

// feedをindexさせない方法
add_action( 'template_redirect', function() {
	if ( is_feed() && headers_sent() === false ) {
		header( 'X-Robots-Tag: noindex, follow', true );
	}
} );

// ページ付けされたインデックスなし
add_action( 'wp_head', 'custom_robots_meta_for_paged' );

function custom_robots_meta_for_paged() {
	if ( is_paged() ) {
		echo '<meta name="robots" content="noindex, follow">' . "\n";
	}
}

// ページ付けされたフォローなし
echo '<meta name="robots" content="noindex, nofollow">' . "\n";


