Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Last active February 10, 2026 06:19
Show Gist options
  • Select an option

  • Save jmabbas/8a079260694e9e2bb5d2ebc87ea28e78 to your computer and use it in GitHub Desktop.

Select an option

Save jmabbas/8a079260694e9e2bb5d2ebc87ea28e78 to your computer and use it in GitHub Desktop.
Vodi - TV show short description on loop
//TV show excerpt on TV show loop
function masvideos_template_loop_tv_show_body_close() {
global $post;
$short_description = apply_filters( 'masvideos_template_loop_tv_show_short_desc', $post->post_excerpt );
?><div class="loop-short-desc-custom" style=" height: 95px; overflow: hidden; margin-bottom: 20px; ">
<?php echo $short_description; ?>
</div>
</div><?php
}
//Episode excerpt on episode loop
function masvideos_template_loop_episode_body_close() {
global $post;
$short_description = apply_filters( 'masvideos_template_single_episode_short_desc', $post->post_excerpt );
?>
<div class="episode__short-description">
<?php echo '<p>' . $short_description . '</p>'; ?>
</div></div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment