编辑:comments.php
<?php /** * Server-side rendering of the `core/comments` block. * * @package WordPress */ /** * Renders the `core/comments` block on the server. * * This render callback is mainly for rendering a dynamic, legacy version of * this block (the old `core/post-comments`). It uses the `comments_template()` * function to generate the output, in the same way as classic PHP themes. * * As this callback will always run during SSR, first we need to check whether * the block is in legacy mode. If not, the HTML generated in the editor is * returned instead. * * @since 6.1.0 * * @global WP_Post $post Global post object. * * @param array $attributes Block attributes. * @param string $content Block default content. * @param WP_Block $block Block instance. * @return string Returns the filtered post comments for the current post wrapped inside "p" tags. */ function render_block_core_comments( $attributes, $content, $block ) { global $post; if ( ! isset( $block->context['postId'] ) ) { return ''; } $post_id = $block->context['postId']; // Return early if there are no comments and comments are closed. if ( ! comments_open( $post_id ) && (int) get_comments_number( $post_id ) === 0 ) { return ''; } // If this isn't the legacy block, we need to render the static version of this block. $is_legacy = 'core/post-comments' === $block->name || ! empty( $attributes['legacy'] ); if ( ! $is_legacy ) { return $block->render( array( 'dynamic' => false ) ); } $post_before = $post; $post = get_post( $post_id ); setup_postdata( $post ); ob_start(); /* * There's a deprecation warning generated by WP Core. * Ideally this deprecation is removed from Core. * In the meantime, this removes it from the output. */ add_filter( 'deprecated_file_trigger_error', '__return_false' ); comments_template(); remove_filter( 'deprecated_file_trigger_error', '__return_false' ); $output = ob_get_clean(); $post = $post_before; $classnames = array(); // Adds the old class name for styles' backwards compatibility. if ( isset( $attributes['legacy'] ) ) { $classnames[] = 'wp-block-post-comments'; } if ( isset( $attributes['textAlign'] ) ) { $classnames[] = 'has-text-align-' . $attributes['textAlign']; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classnames ) ) ); /* * Enqueues scripts and styles required only for the legacy version. That is * why they are not defined in `block.json`. */ wp_enqueue_script( 'comment-reply' ); enqueue_legacy_post_comments_block_styles( $block->name ); return sprintf( '<div %1$s>%2$s</div>', $wrapper_attributes, $output ); } /** * Registers the `core/comments` block on the server. * * @since 6.1.0 */ function register_block_core_comments() { register_block_type_from_metadata( __DIR__ . '/comments', array( 'render_callback' => 'render_block_core_comments', 'skip_inner_blocks' => true, ) ); } add_action( 'init', 'register_block_core_comments' ); /** * Use the button block classes for the form-submit button. * * @since 6.1.0 * * @param array $fields The default comment form arguments. * * @return array Returns the modified fields. */ function comments_block_form_defaults( $fields ) { if ( wp_is_block_theme() ) { $fields['submit_button'] = '<input name="%1$s" type="submit" id="%2$s" class="%3$s wp-block-button__link ' . wp_theme_get_element_class_name( 'button' ) . '" value="%4$s" />'; $fields['submit_field'] = '<p class="form-submit wp-block-button">%1$s %2$s</p>'; } return $fields; } add_filter( 'comment_form_defaults', 'comments_block_form_defaults' ); /** * Enqueues styles from the legacy `core/post-comments` block. These styles are * required only by the block's fallback. * * @since 6.1.0 * * @param string $block_name Name of the new block type. */ function enqueue_legacy_post_comments_block_styles( $block_name ) { static $are_styles_enqueued = false; if ( ! $are_styles_enqueued ) { $handles = array( 'wp-block-post-comments', 'wp-block-buttons', 'wp-block-button', ); foreach ( $handles as $handle ) { wp_enqueue_block_style( $block_name, array( 'handle' => $handle ) ); } $are_styles_enqueued = true; } } /** * Ensures backwards compatibility for any users running the Gutenberg plugin * who have used Post Comments before it was merged into Comments Query Loop. * * The same approach was followed when core/query-loop was renamed to * core/post-template. * * @since 6.1.0 * * @see https://github.com/WordPress/gutenberg/pull/41807 * @see https://github.com/WordPress/gutenberg/pull/32514 */ function register_legacy_post_comments_block() { $registry = WP_Block_Type_Registry::get_instance(); /* * Remove the old `post-comments` block if it was already registered, as it * is about to be replaced by the type defined below. */ if ( $registry->is_registered( 'core/post-comments' ) ) { unregister_block_type( 'core/post-comments' ); } // Recreate the legacy block metadata. $metadata = array( 'name' => 'core/post-comments', 'category' => 'theme', 'attributes' => array( 'textAlign' => array( 'type' => 'string', ), ), 'uses_context' => array( 'postId', 'postType', ), 'supports' => array( 'html' => false, 'align' => array( 'wide', 'full' ), 'typography' => array( 'fontSize' => true, 'lineHeight' => true, '__experimentalFontStyle' => true, '__experimentalFontWeight' => true, '__experimentalLetterSpacing' => true, '__experimentalTextTransform' => true, '__experimentalDefaultControls' => array( 'fontSize' => true, ), ), 'color' => array( 'gradients' => true, 'link' => true, '__experimentalDefaultControls' => array( 'background' => true, 'text' => true, ), ), 'inserter' => false, ), 'style' => array( 'wp-block-post-comments', 'wp-block-buttons', 'wp-block-button', ), 'render_callback' => 'render_block_core_comments', 'skip_inner_blocks' => true, ); /* * Filters the metadata object, the same way it's done inside * `register_block_type_from_metadata()`. This applies some default filters, * like `_wp_multiple_block_styles`, which is required in this case because * the block has multiple styles. */ /** This filter is documented in wp-includes/blocks.php */ $metadata = apply_filters( 'block_type_metadata', $metadata ); register_block_type( 'core/post-comments', $metadata ); } add_action( 'init', 'register_legacy_post_comments_block', 21 );
保存文件
位置:
home
/
fembzvrs
/
zimeza.com
/
wp-includes
/
blocks
批量上传
创建
创建
批量权限
批量删除
名称
权限
大小
修改时间
操作
↑ 返回上级
-
-
-
-
accordion
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
accordion-heading
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
accordion-item
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
accordion-panel
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
archives
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
audio
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
avatar
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
block
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
button
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
buttons
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
calendar
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
categories
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
code
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
column
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
columns
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comment-author-name
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comment-content
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comment-date
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comment-edit-link
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comment-reply-link
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comment-template
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comments
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comments-pagination
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comments-pagination-next
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comments-pagination-numbers
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comments-pagination-previous
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
comments-title
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
cover
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
details
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
embed
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
file
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
footnotes
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
freeform
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
gallery
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
group
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
heading
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
home-link
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
html
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
image
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
latest-comments
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
latest-posts
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
legacy-widget
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
list
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
list-item
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
loginout
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
math
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
media-text
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
missing
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
more
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
navigation
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
navigation-link
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
navigation-submenu
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
nextpage
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
page-list
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
page-list-item
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
paragraph
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
pattern
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-author
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
post-author-biography
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-author-name
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-comments-count
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
post-comments-form
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-comments-link
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
post-content
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-date
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-excerpt
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-featured-image
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-navigation-link
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-template
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-terms
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
post-time-to-read
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
post-title
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
preformatted
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
pullquote
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
query
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
query-no-results
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
query-pagination
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
query-pagination-next
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
query-pagination-numbers
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
query-pagination-previous
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
query-title
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
query-total
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
quote
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
read-more
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
rss
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
search
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
separator
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
shortcode
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
site-logo
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
site-tagline
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
site-title
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
social-link
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
social-links
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
spacer
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
table
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
tag-cloud
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
template-part
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
term-count
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
term-description
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
term-name
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
term-template
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
terms-query
drwxr-xr-x
-
2025-12-03 02:17
权限
删除
重命名
text-columns
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
verse
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
video
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
widget-group
drwxr-xr-x
-
2025-07-06 02:11
权限
删除
重命名
accordion-item.php
-rw-r--r--
2.35 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
accordion.php
-rw-r--r--
1.12 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
archives.php
-rw-r--r--
4.31 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
avatar.php
-rw-r--r--
5.61 KB
2024-10-31 08:09
编辑
下载
权限
删除
重命名
block.php
-rw-r--r--
4.09 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
blocks-json.php
-rw-r--r--
213.43 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
calendar.php
-rw-r--r--
5.93 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
categories.php
-rw-r--r--
4.54 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
comment-author-name.php
-rw-r--r--
2.08 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
comment-content.php
-rw-r--r--
2.4 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
编辑
下载
权限
删除
重命名
comment-template.php
-rw-r--r--
4.39 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
2025-12-03 02:17
编辑
下载
权限
删除
重命名
comments-title.php
-rw-r--r--
2.71 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
comments.php
-rw-r--r--
6.63 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
cover.php
-rw-r--r--
3.1 KB
2025-02-07 20:46
编辑
下载
权限
删除
重命名
error_log
-rw-r--r--
167.77 KB
2026-04-06 03:19
编辑
下载
权限
删除
重命名
file.php
-rw-r--r--
1.83 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
footnotes.php
-rw-r--r--
3.68 KB
2024-02-27 19:48
编辑
下载
权限
删除
重命名
gallery.php
-rw-r--r--
6.29 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
heading.php
-rw-r--r--
1.27 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
home-link.php
-rw-r--r--
5.31 KB
2025-02-07 20:46
编辑
下载
权限
删除
重命名
image.php
-rw-r--r--
13.5 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
index.php
-rw-r--r--
4.99 KB
2024-10-03 04:25
编辑
下载
权限
删除
重命名
latest-comments.php
-rw-r--r--
4.91 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
latest-posts.php
-rw-r--r--
8.53 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
legacy-widget.php
-rw-r--r--
3.92 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
list.php
-rw-r--r--
1.24 KB
2024-05-23 23:56
编辑
下载
权限
删除
重命名
loginout.php
-rw-r--r--
1.63 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
media-text.php
-rw-r--r--
4.28 KB
2024-09-20 06:07
编辑
下载
权限
删除
重命名
navigation-link.php
-rw-r--r--
13.63 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
navigation-submenu.php
-rw-r--r--
9.74 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
navigation.php
-rw-r--r--
48.39 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
page-list-item.php
-rw-r--r--
361 B
2024-05-23 23:39
编辑
下载
权限
删除
重命名
page-list.php
-rw-r--r--
13.29 KB
2024-09-20 05:55
编辑
下载
权限
删除
重命名
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
2025-04-28 20:47
编辑
下载
权限
删除
重命名
post-author.php
-rw-r--r--
2.67 KB
2025-04-28 20:47
编辑
下载
权限
删除
重命名
post-comments-count.php
-rw-r--r--
1.25 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
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
2025-12-03 02:17
编辑
下载
权限
删除
重命名
post-content.php
-rw-r--r--
2.29 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
post-date.php
-rw-r--r--
3.55 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
post-excerpt.php
-rw-r--r--
3.53 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
post-featured-image.php
-rw-r--r--
9.14 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
post-navigation-link.php
-rw-r--r--
4.72 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
post-template.php
-rw-r--r--
5.61 KB
2024-09-23 10:52
编辑
下载
权限
删除
重命名
post-terms.php
-rw-r--r--
3.55 KB
2025-02-07 20:46
编辑
下载
权限
删除
重命名
post-time-to-read.php
-rw-r--r--
6.34 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
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.69 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
query-pagination-numbers.php
-rw-r--r--
4.66 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
query-pagination-previous.php
-rw-r--r--
3.49 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
query-pagination.php
-rw-r--r--
1.15 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
query-title.php
-rw-r--r--
2.87 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
query-total.php
-rw-r--r--
2.48 KB
2025-03-25 16:54
编辑
下载
权限
删除
重命名
query.php
-rw-r--r--
5.56 KB
2025-02-07 20:46
编辑
下载
权限
删除
重命名
read-more.php
-rw-r--r--
1.79 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
require-dynamic-blocks.php
-rw-r--r--
4.59 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
require-static-blocks.php
-rw-r--r--
558 B
2025-12-03 02:17
编辑
下载
权限
删除
重命名
rss.php
-rw-r--r--
4.5 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
search.php
-rw-r--r--
23.26 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
site-logo.php
-rw-r--r--
6.19 KB
2024-09-20 05:55
编辑
下载
权限
删除
重命名
site-tagline.php
-rw-r--r--
1.17 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名
site-title.php
-rw-r--r--
1.82 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
social-link.php
-rw-r--r--
66.15 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
tag-cloud.php
-rw-r--r--
1.55 KB
2024-09-20 05:55
编辑
下载
权限
删除
重命名
template-part.php
-rw-r--r--
9.92 KB
2025-03-03 23:08
编辑
下载
权限
删除
重命名
term-count.php
-rw-r--r--
1.8 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
term-description.php
-rw-r--r--
1.73 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
term-name.php
-rw-r--r--
2.02 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
term-template.php
-rw-r--r--
4.41 KB
2026-02-04 02:17
编辑
下载
权限
删除
重命名
video.php
-rw-r--r--
2.67 KB
2025-12-03 02:17
编辑
下载
权限
删除
重命名
widget-group.php
-rw-r--r--
2.38 KB
2024-05-23 23:39
编辑
下载
权限
删除
重命名