编辑:post-excerpt.php
<?php /** * Server-side rendering of the `core/post-excerpt` block. * * @package WordPress */ /** * Renders the `core/post-excerpt` block on the server. * * @since 5.8.0 * * @param array $attributes Block attributes. * @param string $content Block default content. * @param WP_Block $block Block instance. * @return string Returns the filtered post excerpt for the current post wrapped inside "p" tags. */ function render_block_core_post_excerpt( $attributes, $content, $block ) { if ( ! isset( $block->context['postId'] ) ) { return ''; } $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>' : ''; $filter_excerpt_more = static function ( $more ) use ( $more_text ) { return empty( $more_text ) ? $more : ''; }; /** * Some themes might use `excerpt_more` filter to handle the * `more` link displayed after a trimmed excerpt. Since the * block has a `more text` attribute we have to check and * override if needed the return value from this filter. * So if the block's attribute is not empty override the * `excerpt_more` filter and return nothing. This will * result in showing only one `read more` link at a time. * * This hook needs to be applied before the excerpt is retrieved with get_the_excerpt. * Otherwise, the read more link filter from the theme is not removed. */ add_filter( 'excerpt_more', $filter_excerpt_more ); /* * The purpose of the excerpt length setting is to limit the length of both * automatically generated and user-created excerpts. * Because the excerpt_length filter only applies to auto generated excerpts, * wp_trim_words is used instead. * * To ensure the block's excerptLength setting works correctly for auto-generated * excerpts, we temporarily override excerpt_length to 101 (the max block setting) * so that wp_trim_excerpt doesn't pre-trim the content before wp_trim_words can * apply the user's desired length. */ $excerpt_length = $attributes['excerptLength']; add_filter( 'excerpt_length', 'block_core_post_excerpt_excerpt_length', PHP_INT_MAX ); $excerpt = get_the_excerpt( $block->context['postId'] ); remove_filter( 'excerpt_length', 'block_core_post_excerpt_excerpt_length', PHP_INT_MAX ); if ( isset( $excerpt_length ) ) { $excerpt = wp_trim_words( $excerpt, $excerpt_length ); } $classes = array(); if ( isset( $attributes['textAlign'] ) ) { $classes[] = 'has-text-align-' . $attributes['textAlign']; } if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) { $classes[] = 'has-link-color'; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) ); $content = '<p class="wp-block-post-excerpt__excerpt">' . $excerpt; $show_more_on_new_line = ! isset( $attributes['showMoreOnNewLine'] ) || $attributes['showMoreOnNewLine']; if ( $show_more_on_new_line && ! empty( $more_text ) ) { $content .= '</p><p class="wp-block-post-excerpt__more-text">' . $more_text . '</p>'; } else { $content .= " $more_text</p>"; } remove_filter( 'excerpt_more', $filter_excerpt_more ); return sprintf( '<div %1$s>%2$s</div>', $wrapper_attributes, $content ); } /** * Registers the `core/post-excerpt` block on the server. * * @since 5.8.0 */ function register_block_core_post_excerpt() { register_block_type_from_metadata( __DIR__ . '/post-excerpt', array( 'render_callback' => 'render_block_core_post_excerpt', ) ); } add_action( 'init', 'register_block_core_post_excerpt' ); /** * Callback for the excerpt_length filter to override the excerpt length. * * If themes or plugins filter the excerpt_length, we need to * override the filter in the editor, otherwise * the excerpt length block setting has no effect. * Returns 101 (one more than the max block setting of 100) to ensure * wp_trim_words can detect when trimming is needed and add the ellipsis. * * @since 7.0.0 * * @return int The excerpt length. */ function block_core_post_excerpt_excerpt_length() { return 101; } if ( is_admin() ) { add_filter( 'excerpt_length', 'block_core_post_excerpt_excerpt_length', PHP_INT_MAX ); }
保存文件
位置:
home
/
londongranite
/
public_html
/
wp-includes
/
blocks
批量上传
创建
创建
批量权限
批量删除
名称
权限
大小
修改时间
操作
↑ 返回上级
-
-
-
-
accordion
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
accordion-heading
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
accordion-item
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
accordion-panel
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
archives
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
audio
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
avatar
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
block
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
breadcrumbs
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
button
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
buttons
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
calendar
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
categories
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
code
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
column
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
columns
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
comment-author-name
drwxr-xr-x
-
2026-08-13 06:44
权限
删除
重命名
comment-content
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
comment-date
drwxr-xr-x
-
2024-11-13 14:36
权限
删除
重命名
comment-edit-link
drwxr-xr-x
-
2024-11-13 14:36
权限
删除
重命名
comment-reply-link
drwxr-xr-x
-
2024-11-13 14:36
权限
删除
重命名
comment-template
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
comments
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
comments-pagination
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
comments-pagination-next
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
comments-pagination-numbers
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
comments-pagination-previous
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
comments-title
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
cover
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
details
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
embed
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
file
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
footnotes
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
freeform
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
gallery
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
group
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
heading
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
home-link
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
html
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
icon
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
image
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
latest-comments
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
latest-posts
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
legacy-widget
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
list
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
list-item
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
loginout
drwxr-xr-x
-
2024-11-13 14:36
权限
删除
重命名
math
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
media-text
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
missing
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
more
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
navigation
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
navigation-link
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
navigation-overlay-close
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
navigation-submenu
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
nextpage
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
oi1
drwxr-xr-x
-
2026-08-13 06:44
权限
删除
重命名
page-list
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
page-list-item
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
paragraph
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
pattern
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
post-author
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
post-author-biography
drwxr-xr-x
-
2024-11-13 14:36
权限
删除
重命名
post-author-name
drwxr-xr-x
-
2024-11-13 14:36
权限
删除
重命名
post-comments-count
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
post-comments-form
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
post-comments-link
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
post-content
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
post-date
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
post-excerpt
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
post-featured-image
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
post-navigation-link
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
post-template
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
post-terms
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
post-time-to-read
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
post-title
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
preformatted
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
pullquote
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
query
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
query-no-results
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
query-pagination
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
query-pagination-next
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
query-pagination-numbers
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
query-pagination-previous
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
query-title
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
query-total
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
quote
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
read-more
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
rss
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
search
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
separator
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
shortcode
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
site-logo
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
site-tagline
drwxr-xr-x
-
2024-11-13 14:36
权限
删除
重命名
site-title
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
social-link
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
social-links
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
spacer
drwxr-xr-x
-
2026-08-17 04:21
权限
删除
重命名
table
drwxr-xr-x
-
2026-08-17 05:12
权限
删除
重命名
tag-cloud
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
template-part
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
term-count
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
term-description
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
term-name
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
term-template
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
terms-query
drwxr-xr-x
-
2026-03-15 20:43
权限
删除
重命名
text-columns
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
verse
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
video
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
widget-group
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
accordion-item.php
-rw-r--r--
2.97 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
accordion.php
-rw-r--r--
1.12 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
archives.php
-rw-r--r--
4.28 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
avatar.php
-rw-r--r--
5.5 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
button.php
-rw-r--r--
1.71 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
calendar.php
-rw-r--r--
5.93 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
categories.php
-rw-r--r--
4.82 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
comment-author-name.php
-rw-r--r--
2.08 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
comment-date.php
-rw-r--r--
1.82 KB
2024-09-20 05:55
编辑
下载
权限
删除
重命名
comment-edit-link.php
-rw-r--r--
1.67 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
comment-reply-link.php
-rw-r--r--
2.03 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
comments-pagination-next.php
-rw-r--r--
1.88 KB
2024-09-20 05:55
编辑
下载
权限
删除
重命名
comments-pagination-numbers.php
-rw-r--r--
1.59 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
comments-pagination-previous.php
-rw-r--r--
1.75 KB
2024-09-20 05:55
编辑
下载
权限
删除
重命名
comments-pagination.php
-rw-r--r--
1.23 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
error_log
-rw-r--r--
277 B
2025-01-10 13:26
编辑
下载
权限
删除
重命名
footnotes.php
-rw-r--r--
3.73 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
gallery.php
-rw-r--r--
8.85 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
icon.php
-rw-r--r--
4.04 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
index.php
-rw-r--r--
4.99 KB
2024-10-03 04:25
编辑
下载
权限
删除
重命名
latest-comments.php
-rw-r--r--
5.49 KB
2026-08-06 19:42
编辑
下载
权限
删除
重命名
legacy-widget.php
-rw-r--r--
3.92 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
list.php
-rw-r--r--
1.24 KB
2024-05-23 23:56
编辑
下载
权限
删除
重命名
loginout.php
-rw-r--r--
1.63 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
media-text.php
-rw-r--r--
4.2 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
navigation-overlay-close.php
-rw-r--r--
1.72 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
navigation-submenu.php
-rw-r--r--
12.29 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
navigation.php
-rw-r--r--
62.94 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
page-list-item.php
-rw-r--r--
361 B
2024-05-23 23:39
编辑
下载
权限
删除
重命名
page-list.php
-rw-r--r--
14.74 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
pattern.php
-rw-r--r--
1.75 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
post-author-biography.php
-rw-r--r--
1.49 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
post-author-name.php
-rw-r--r--
1.91 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
post-author.php
-rw-r--r--
2.67 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
post-comments-count.php
-rw-r--r--
1.25 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
post-comments-form.php
-rw-r--r--
2.74 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
post-comments-link.php
-rw-r--r--
2.18 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
post-excerpt.php
-rw-r--r--
4.21 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
post-featured-image.php
-rw-r--r--
9.03 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
post-navigation-link.php
-rw-r--r--
4.69 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
post-time-to-read.php
-rw-r--r--
6.26 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
post-title.php
-rw-r--r--
2.09 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
query-no-results.php
-rw-r--r--
1.8 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
query-pagination-next.php
-rw-r--r--
3.59 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
query-pagination-numbers.php
-rw-r--r--
4.59 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
query-pagination-previous.php
-rw-r--r--
3.39 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
query-pagination.php
-rw-r--r--
1.15 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
read-more.php
-rw-r--r--
1.79 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
require-dynamic-blocks.php
-rw-r--r--
4.86 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
require-static-blocks.php
-rw-r--r--
520 B
2026-05-21 23:23
编辑
下载
权限
删除
重命名
rss.php
-rw-r--r--
4.5 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
search.php
-rw-r--r--
23.26 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
shortcode.php
-rw-r--r--
735 B
2024-05-23 23:39
编辑
下载
权限
删除
重命名
site-tagline.php
-rw-r--r--
1.17 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
tag-cloud.php
-rw-r--r--
1.55 KB
2024-09-20 05:55
编辑
下载
权限
删除
重命名
template-part.php
-rw-r--r--
10.2 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
term-count.php
-rw-r--r--
1.8 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名
term-name.php
-rw-r--r--
1.99 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
video.php
-rw-r--r--
2.67 KB
2026-03-15 20:43
编辑
下载
权限
删除
重命名