Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save hayashikejinan/db78a7aa8e2e57b29db72b358fdd6708 to your computer and use it in GitHub Desktop.

Select an option

Save hayashikejinan/db78a7aa8e2e57b29db72b358fdd6708 to your computer and use it in GitHub Desktop.
タイトルに"【PR】"を含む場合、RSS を抜粋にするやつ
<?php
/**
* @hayashikejinan
* URL: https://hayashikejinan.com
* License: GNU General Public License v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
add_action( 'rss_tag_pre', function() {
if ( strpos( get_the_title( get_the_ID() ),'【PR】' ) !== false ) {
add_filter( 'the_content_feed', function() {
return apply_filters( 'the_excerpt', get_the_excerpt() );
} );
}
}, 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment