| [ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Server-side rendering of the `core/post-excerpt` block. 4 * 5 * @package WordPress 6 */ 7 8 /** 9 * Renders the `core/post-excerpt` block on the server. 10 * 11 * @since 5.8.0 12 * 13 * @param array $attributes Block attributes. 14 * @param string $content Block default content. 15 * @param WP_Block $block Block instance. 16 * @return string Returns the filtered post excerpt for the current post wrapped inside "p" tags. 17 */ 18 function render_block_core_post_excerpt( $attributes, $content, $block ) { 19 if ( ! isset( $block->context['postId'] ) ) { 20 return ''; 21 } 22 23 $more_text = ! empty( $attributes['moreText'] ) ? '<a class="wp-block-post-excerpt__more-link" href="' . esc_url( get_the_permalink( $block->context['postId'] ) ) . '">' . wp_kses_post( $attributes['moreText'] ) . '</a>' : ''; 24 $filter_excerpt_more = static function ( $more ) use ( $more_text ) { 25 return empty( $more_text ) ? $more : ''; 26 }; 27 /** 28 * Some themes might use `excerpt_more` filter to handle the 29 * `more` link displayed after a trimmed excerpt. Since the 30 * block has a `more text` attribute we have to check and 31 * override if needed the return value from this filter. 32 * So if the block's attribute is not empty override the 33 * `excerpt_more` filter and return nothing. This will 34 * result in showing only one `read more` link at a time. 35 * 36 * This hook needs to be applied before the excerpt is retrieved with get_the_excerpt. 37 * Otherwise, the read more link filter from the theme is not removed. 38 */ 39 add_filter( 'excerpt_more', $filter_excerpt_more ); 40 41 /* 42 * The purpose of the excerpt length setting is to limit the length of both 43 * automatically generated and user-created excerpts. 44 * Because the excerpt_length filter only applies to auto generated excerpts, 45 * wp_trim_words is used instead. 46 * 47 * To ensure the block's excerptLength setting works correctly for auto-generated 48 * excerpts, we temporarily override excerpt_length to 101 (the max block setting) 49 * so that wp_trim_excerpt doesn't pre-trim the content before wp_trim_words can 50 * apply the user's desired length. 51 */ 52 $excerpt_length = $attributes['excerptLength']; 53 add_filter( 'excerpt_length', 'block_core_post_excerpt_excerpt_length', PHP_INT_MAX ); 54 55 $excerpt = get_the_excerpt( $block->context['postId'] ); 56 57 remove_filter( 'excerpt_length', 'block_core_post_excerpt_excerpt_length', PHP_INT_MAX ); 58 59 if ( isset( $excerpt_length ) ) { 60 $excerpt = wp_trim_words( $excerpt, $excerpt_length ); 61 } 62 63 $classes = array(); 64 if ( isset( $attributes['textAlign'] ) ) { 65 $classes[] = 'has-text-align-' . $attributes['textAlign']; 66 } 67 if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) { 68 $classes[] = 'has-link-color'; 69 } 70 $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) ); 71 72 $content = '<p class="wp-block-post-excerpt__excerpt">' . $excerpt; 73 $show_more_on_new_line = ! isset( $attributes['showMoreOnNewLine'] ) || $attributes['showMoreOnNewLine']; 74 if ( $show_more_on_new_line && ! empty( $more_text ) ) { 75 $content .= '</p><p class="wp-block-post-excerpt__more-text">' . $more_text . '</p>'; 76 } elseif ( empty( $more_text ) ) { 77 $content .= '</p>'; 78 } else { 79 $separator = '' === $excerpt ? '' : ' '; 80 $content .= $separator . $more_text . '</p>'; 81 } 82 remove_filter( 'excerpt_more', $filter_excerpt_more ); 83 return sprintf( '<div %1$s>%2$s</div>', $wrapper_attributes, $content ); 84 } 85 86 /** 87 * Registers the `core/post-excerpt` block on the server. 88 * 89 * @since 5.8.0 90 */ 91 function register_block_core_post_excerpt() { 92 register_block_type_from_metadata( 93 __DIR__ . '/post-excerpt', 94 array( 95 'render_callback' => 'render_block_core_post_excerpt', 96 ) 97 ); 98 } 99 add_action( 'init', 'register_block_core_post_excerpt' ); 100 101 /** 102 * Callback for the excerpt_length filter to override the excerpt length. 103 * 104 * If themes or plugins filter the excerpt_length, we need to 105 * override the filter in the editor, otherwise 106 * the excerpt length block setting has no effect. 107 * Returns 101 (one more than the max block setting of 100) to ensure 108 * wp_trim_words can detect when trimming is needed and add the ellipsis. 109 * 110 * @since 7.0.0 111 * 112 * @return int The excerpt length. 113 */ 114 function block_core_post_excerpt_excerpt_length() { 115 return 101; 116 } 117 118 if ( is_admin() ) { 119 add_filter( 'excerpt_length', 'block_core_post_excerpt_excerpt_length', PHP_INT_MAX ); 120 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated : Fri Sep 25 08:20:31 2026 | Cross-referenced by PHPXref |