Keine Beschreibung

excerpt-chat.php 530B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Show the appropriate content for the Chat 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. // If there are paragraph blocks, print up to two.
  12. // Otherwise this is legacy content, so print the excerpt.
  13. if ( has_block( 'core/paragraph', get_the_content() ) ) {
  14. twenty_twenty_one_print_first_instance_of_block( 'core/paragraph', get_the_content(), 2 );
  15. } else {
  16. the_excerpt();
  17. }