Created
June 8, 2012 04:17
-
-
Save gatespace/2893560 to your computer and use it in GitHub Desktop.
WordPressのフィードの本文を変更
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* 登録ユーザー限定コンテンツがある場合のフィードの本文 | |
*/ | |
function my_content_feed( $content ) { | |
$content = "※会員専用情報です。"; | |
return $content; | |
} | |
add_filter('the_content_feed', 'my_content_feed', 10, 2); | |
add_filter('the_excerpt_rss', 'my_content_feed', 10, 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment