Last active
December 16, 2015 12:28
-
-
Save eteubert/5434331 to your computer and use it in GitHub Desktop.
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 | |
| # into plugin or themes functions.php | |
| function podlove_use_subtitle_as_excerpt( $excerpt ) { | |
| if ( get_post_type() !== 'podcast' ) | |
| return $excerpt; | |
| return \Podlove\Model\Episode::find_or_create_by_post_id( get_the_ID() )->subtitle; | |
| } | |
| add_filter( 'get_the_excerpt', 'podlove_use_subtitle_as_excerpt', 20 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment