Last active
February 10, 2026 06:19
-
-
Save jmabbas/8a079260694e9e2bb5d2ebc87ea28e78 to your computer and use it in GitHub Desktop.
Vodi - TV show short description on loop
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
| //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