Last active
September 14, 2018 00:20
-
-
Save hayashikejinan/db78a7aa8e2e57b29db72b358fdd6708 to your computer and use it in GitHub Desktop.
タイトルに"【PR】"を含む場合、RSS を抜粋にするやつ
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 | |
| /** | |
| * @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