PluginProbe
Gutenberg / 22.3.0
Gutenberg v22.3.0
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
gutenberg / build / scripts / block-library / post-excerpt.php

post-excerpt.php in Gutenberg 22.3.0, at build/scripts/block-library/post-excerpt.php

104 lines 3.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 gutenberg_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 $excerpt_length = $attributes['excerptLength'];
48 $excerpt = get_the_excerpt( $block->context['postId'] );
49 if ( isset( $excerpt_length ) ) {
50 $excerpt = wp_trim_words( $excerpt, $excerpt_length );
51 }
52
53 $classes = array();
54 if ( isset( $attributes['textAlign'] ) ) {
55 $classes[] = 'has-text-align-' . $attributes['textAlign'];
56 }
57 if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) {
58 $classes[] = 'has-link-color';
59 }
60 $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) );
61
62 $content = '<p class="wp-block-post-excerpt__excerpt">' . $excerpt;
63 $show_more_on_new_line = ! isset( $attributes['showMoreOnNewLine'] ) || $attributes['showMoreOnNewLine'];
64 if ( $show_more_on_new_line && ! empty( $more_text ) ) {
65 $content .= '</p><p class="wp-block-post-excerpt__more-text">' . $more_text . '</p>';
66 } else {
67 $content .= " $more_text</p>";
68 }
69 remove_filter( 'excerpt_more', $filter_excerpt_more );
70 return sprintf( '<div %1$s>%2$s</div>', $wrapper_attributes, $content );
71 }
72
73 /**
74 * Registers the `core/post-excerpt` block on the server.
75 *
76 * @since 5.8.0
77 */
78 function gutenberg_register_block_core_post_excerpt() {
79 register_block_type_from_metadata(
80 __DIR__ . '/post-excerpt',
81 array(
82 'render_callback' => 'gutenberg_render_block_core_post_excerpt',
83 )
84 );
85 }
86 add_action( 'init', 'gutenberg_register_block_core_post_excerpt', 20 );
87
88 /**
89 * If themes or plugins filter the excerpt_length, we need to
90 * override the filter in the editor, otherwise
91 * the excerpt length block setting has no effect.
92 * Returns 100 because 100 is the max length in the setting.
93 */
94 if ( is_admin() ||
95 defined( 'REST_REQUEST' ) && REST_REQUEST ) {
96 add_filter(
97 'excerpt_length',
98 static function () {
99 return 100;
100 },
101 PHP_INT_MAX
102 );
103 }
104