Skip to content

Instantly share code, notes, and snippets.

@gatespace
Created June 8, 2012 04:17
Show Gist options
  • Save gatespace/2893560 to your computer and use it in GitHub Desktop.
Save gatespace/2893560 to your computer and use it in GitHub Desktop.
WordPressのフィードの本文を変更
<?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