Skip to content

Instantly share code, notes, and snippets.

@eteubert
Last active December 16, 2015 12:28
Show Gist options
  • Select an option

  • Save eteubert/5434331 to your computer and use it in GitHub Desktop.

Select an option

Save eteubert/5434331 to your computer and use it in GitHub Desktop.
<?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