File Manager Lite
Dir:
/home/atomylvb/jarangomd.com/wp-includes/blocks
Upload
[..]
accordion/
Rename
Del
accordion-heading/
Rename
Del
accordion-item/
Rename
Del
accordion-panel/
Rename
Del
archives/
Rename
Del
audio/
Rename
Del
avatar/
Rename
Del
blocks-json.php (213.43 KB)
Edit
Rename
Del
button/
Rename
Del
buttons/
Rename
Del
calendar/
Rename
Del
categories/
Rename
Del
code/
Rename
Del
columns/
Rename
Del
comment-author-name/
Rename
Del
comment-content/
Rename
Del
comment-date/
Rename
Del
comment-date.php (1.82 KB)
Edit
Rename
Del
comment-edit-link/
Rename
Del
comment-template/
Rename
Del
comments/
Rename
Del
comments-pagination/
Rename
Del
comments-pagination-next/
Rename
Del
comments-pagination-numbers/
Rename
Del
comments-pagination-numbers.php (1.59 KB)
Edit
Rename
Del
comments-pagination-previous/
Rename
Del
comments-title/
Rename
Del
cover/
Rename
Del
details/
Rename
Del
embed/
Rename
Del
file/
Rename
Del
freeform/
Rename
Del
gallery/
Rename
Del
group/
Rename
Del
heading/
Rename
Del
home-link/
Rename
Del
home-link.php (5.31 KB)
Edit
Rename
Del
image/
Rename
Del
image.php (13.5 KB)
Edit
Rename
Del
latest-comments/
Rename
Del
latest-posts/
Rename
Del
legacy-widget/
Rename
Del
list/
Rename
Del
list-item/
Rename
Del
math/
Rename
Del
media-text/
Rename
Del
media-text.php (4.28 KB)
Edit
Rename
Del
missing/
Rename
Del
more/
Rename
Del
navigation/
Rename
Del
navigation-link/
Rename
Del
nextpage/
Rename
Del
page-list/
Rename
Del
page-list-item/
Rename
Del
page-list.php (13.29 KB)
Edit
Rename
Del
paragraph/
Rename
Del
pattern/
Rename
Del
post-author/
Rename
Del
post-author-biography/
Rename
Del
post-author-biography.php (1.49 KB)
Edit
Rename
Del
post-author-name/
Rename
Del
post-comments-count/
Rename
Del
post-comments-form/
Rename
Del
post-comments-link/
Rename
Del
post-comments-link.php (2.18 KB)
Edit
Rename
Del
post-content/
Rename
Del
post-date/
Rename
Del
post-excerpt/
Rename
Del
post-featured-image/
Rename
Del
post-navigation-link/
Rename
Del
post-template/
Rename
Del
post-terms/
Rename
Del
post-time-to-read/
Rename
Del
post-title/
Rename
Del
preformatted/
Rename
Del
pullquote/
Rename
Del
query/
Rename
Del
query-no-results/
Rename
Del
query-pagination/
Rename
Del
query-pagination-next/
Rename
Del
query-pagination-numbers/
Rename
Del
query-pagination-numbers.php (4.66 KB)
Edit
Rename
Del
query-pagination-previous/
Rename
Del
query-title/
Rename
Del
query-total/
Rename
Del
query-total.php (2.48 KB)
Edit
Rename
Del
quote/
Rename
Del
read-more/
Rename
Del
require-static-blocks.php (558 B)
Edit
Rename
Del
rss/
Rename
Del
rss.php (4.5 KB)
Edit
Rename
Del
search/
Rename
Del
separator/
Rename
Del
shortcode/
Rename
Del
site-logo/
Rename
Del
site-tagline/
Rename
Del
site-tagline.php (1.17 KB)
Edit
Rename
Del
site-title/
Rename
Del
social-link/
Rename
Del
social-links/
Rename
Del
spacer/
Rename
Del
table/
Rename
Del
tag-cloud/
Rename
Del
tag-cloud.php (1.55 KB)
Edit
Rename
Del
template-part/
Rename
Del
term-count/
Rename
Del
term-description/
Rename
Del
term-description.php (1.73 KB)
Edit
Rename
Del
term-name/
Rename
Del
term-template/
Rename
Del
terms-query/
Rename
Del
text-columns/
Rename
Del
verse/
Rename
Del
video/
Rename
Del
widget-group/
Rename
Del
Edit: comment-date.php
<?php /** * Server-side rendering of the `core/comment-date` block. * * @package WordPress */ /** * Renders the `core/comment-date` block on the server. * * @since 6.0.0 * * @param array $attributes Block attributes. * @param string $content Block default content. * @param WP_Block $block Block instance. * @return string Return the post comment's date. */ function render_block_core_comment_date( $attributes, $content, $block ) { if ( ! isset( $block->context['commentId'] ) ) { return ''; } $comment = get_comment( $block->context['commentId'] ); if ( empty( $comment ) ) { return ''; } $classes = ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) ? 'has-link-color' : ''; $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $classes ) ); if ( isset( $attributes['format'] ) && 'human-diff' === $attributes['format'] ) { // translators: %s: human-readable time difference. $formatted_date = sprintf( __( '%s ago' ), human_time_diff( get_comment_date( 'U', $comment ) ) ); } else { $formatted_date = get_comment_date( empty( $attributes['format'] ) ? '' : $attributes['format'], $comment ); } $link = get_comment_link( $comment ); if ( ! empty( $attributes['isLink'] ) ) { $formatted_date = sprintf( '<a href="%1s">%2s</a>', esc_url( $link ), $formatted_date ); } return sprintf( '<div %1$s><time datetime="%2$s">%3$s</time></div>', $wrapper_attributes, esc_attr( get_comment_date( 'c', $comment ) ), $formatted_date ); } /** * Registers the `core/comment-date` block on the server. * * @since 6.0.0 */ function register_block_core_comment_date() { register_block_type_from_metadata( __DIR__ . '/comment-date', array( 'render_callback' => 'render_block_core_comment_date', ) ); } add_action( 'init', 'register_block_core_comment_date' );
Simpan