Нема описа

excerpt-video.php 646B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Show the appropriate content for the Video post format.
  4. *
  5. * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Twenty_One
  9. * @since Twenty Twenty-One 1.0
  10. */
  11. $content = get_the_content();
  12. if ( has_block( 'core/video', $content ) ) {
  13. twenty_twenty_one_print_first_instance_of_block( 'core/video', $content );
  14. } elseif ( has_block( 'core/embed', $content ) ) {
  15. twenty_twenty_one_print_first_instance_of_block( 'core/embed', $content );
  16. } else {
  17. twenty_twenty_one_print_first_instance_of_block( 'core-embed/*', $content );
  18. }
  19. // Add the excerpt.
  20. the_excerpt();