コード内容：自動フィードリンク機能に対応させるコード例
コードの記述先：functions.php
-------------------------------------------------------
<?php
function theme_setup(){
add_theme_support( 'automatic-feed-links' );
}
add_action( 'after_setup_theme', 'theme_setup' );
?>
-------------------------------------------------------