Skip to content

Instantly share code, notes, and snippets.

@kachi
Created April 4, 2012 13:30
Show Gist options
  • Select an option

  • Save kachi/2301060 to your computer and use it in GitHub Desktop.

Select an option

Save kachi/2301060 to your computer and use it in GitHub Desktop.
<?php
function feedonly_shortcode( $atts, $content = null) {
if (!is_feed()) return "";
return $content;
}
add_shortcode('feedonly', 'feedonly_shortcode');
?>
/*記事内で以下のショートコードで囲ったコンテンツはフィード内でのみ閲覧可能になる*/
[feedonly]RSSフィード登録者にだけ公開します。[/feedonly]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment