カスタム投稿タイプのRSS Comment

4:01 PM on 2010年11月24日

カスタム投稿タイプを作った場合、そのRSSフィードだけも出力したいと思います。
カスタム投稿タイプを設定しただけではRSSフィードには入らないので、function.phpに下記を追記します。

1
2
3
4
5
6
7
8
// RSSの追加
function my_get_posts( $query ) {
    if ( is_feed() ) {
        $query->set( 'post_type', array('info') ); // カスタム投稿タイプ'info'を追加した場合
        return $query;
    }
}
add_filter( 'pre_get_posts', 'my_get_posts' );

出力されるRSSのURL

公開URL/feed?post_type=info

Leave a Reply

Have something to say? Jump right in!     Formatting

(required)
(required)

Close

Formatting Your Comment

The following XHTML tags are available for use:

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

URLs that start with http:// are automatically converted to hyperlinks.