H69UNtblNBNpha2dtB1Odn8qYp1Qk5NK2gi7yfceofo9N
/
home
/
ymswebso
/
public_html
/
ashermilgate
/
wp-includes
/
blocks
/
Nama File / Folder
Size
Action
archives
--
NONE
audio
--
NONE
avatar
--
NONE
block
--
NONE
button
--
NONE
buttons
--
NONE
calendar
--
NONE
categories
--
NONE
code
--
NONE
column
--
NONE
columns
--
NONE
comment-author-name
--
NONE
comment-content
--
NONE
comment-date
--
NONE
comment-edit-link
--
NONE
comment-reply-link
--
NONE
comment-template
--
NONE
comments
--
NONE
comments-pagination
--
NONE
comments-pagination-next
--
NONE
comments-pagination-numbers
--
NONE
comments-pagination-previous
--
NONE
comments-title
--
NONE
cover
--
NONE
details
--
NONE
embed
--
NONE
file
--
NONE
footnotes
--
NONE
freeform
--
NONE
gallery
--
NONE
group
--
NONE
heading
--
NONE
home-link
--
NONE
html
--
NONE
image
--
NONE
latest-comments
--
NONE
latest-posts
--
NONE
legacy-widget
--
NONE
list
--
NONE
list-item
--
NONE
loginout
--
NONE
media-text
--
NONE
missing
--
NONE
more
--
NONE
navigation
--
NONE
navigation-link
--
NONE
navigation-submenu
--
NONE
nextpage
--
NONE
page-list
--
NONE
page-list-item
--
NONE
paragraph
--
NONE
pattern
--
NONE
post-author
--
NONE
post-author-biography
--
NONE
post-author-name
--
NONE
post-comments-form
--
NONE
post-content
--
NONE
post-date
--
NONE
post-excerpt
--
NONE
post-featured-image
--
NONE
post-navigation-link
--
NONE
post-template
--
NONE
post-terms
--
NONE
post-title
--
NONE
preformatted
--
NONE
pullquote
--
NONE
query
--
NONE
query-no-results
--
NONE
query-pagination
--
NONE
query-pagination-next
--
NONE
query-pagination-numbers
--
NONE
query-pagination-previous
--
NONE
query-title
--
NONE
query-total
--
NONE
quote
--
NONE
read-more
--
NONE
rss
--
NONE
search
--
NONE
separator
--
NONE
shortcode
--
NONE
site-logo
--
NONE
site-tagline
--
NONE
site-title
--
NONE
social-link
--
NONE
social-links
--
NONE
spacer
--
NONE
table
--
NONE
tag-cloud
--
NONE
template-part
--
NONE
term-description
--
NONE
text-columns
--
NONE
verse
--
NONE
video
--
NONE
widget-group
--
NONE
archives.php
2.924KB
Hapus
Edit
Rename
avatar.php
5.61KB
Hapus
Edit
Rename
block.php
3.236KB
Hapus
Edit
Rename
blocks-json.php
189.399KB
Hapus
Edit
Rename
button.php
1.763KB
Hapus
Edit
Rename
calendar.php
5.933KB
Hapus
Edit
Rename
comment-author-name.php
2.083KB
Hapus
Edit
Rename
comment-content.php
2.401KB
Hapus
Edit
Rename
comment-date.php
1.819KB
Hapus
Edit
Rename
comment-edit-link.php
1.673KB
Hapus
Edit
Rename
comment-template.php
4.389KB
Hapus
Edit
Rename
comments-pagination-numbers.php
1.594KB
Hapus
Edit
Rename
comments-pagination-previous.php
1.748KB
Hapus
Edit
Rename
comments-title.php
2.707KB
Hapus
Edit
Rename
cover.php
3.101KB
Hapus
Edit
Rename
footnotes.php
3.683KB
Hapus
Edit
Rename
gallery.php
6.287KB
Hapus
Edit
Rename
home-link.php
5.311KB
Hapus
Edit
Rename
image.php
11.741KB
Hapus
Edit
Rename
latest-posts.php
8.342KB
Hapus
Edit
Rename
list.php
1.243KB
Hapus
Edit
Rename
loginout.php
1.385KB
Hapus
Edit
Rename
navigation-link.php
13.587KB
Hapus
Edit
Rename
navigation-submenu.php
9.71KB
Hapus
Edit
Rename
navigation.php
48.457KB
Hapus
Edit
Rename
pattern.php
1.746KB
Hapus
Edit
Rename
post-author-name.php
1.905KB
Hapus
Edit
Rename
post-author.php
2.67KB
Hapus
Edit
Rename
post-comments-form.php
2.739KB
Hapus
Edit
Rename
post-date.php
3.051KB
Hapus
Edit
Rename
post-featured-image.php
9.144KB
Hapus
Edit
Rename
post-navigation-link.php
4.724KB
Hapus
Edit
Rename
post-title.php
2.088KB
Hapus
Edit
Rename
query-no-results.php
1.804KB
Hapus
Edit
Rename
query-pagination-next.php
3.698KB
Hapus
Edit
Rename
query-pagination-numbers.php
4.658KB
Hapus
Edit
Rename
query-total.php
2.476KB
Hapus
Edit
Rename
read-more.php
1.787KB
Hapus
Edit
Rename
require-dynamic-blocks.php
4.065KB
Hapus
Edit
Rename
rss.php
3.978KB
Hapus
Edit
Rename
site-logo.php
6.186KB
Hapus
Edit
Rename
site-tagline.php
1.175KB
Hapus
Edit
Rename
social-link.php
63.646KB
Hapus
Edit
Rename
tag-cloud.php
1.553KB
Hapus
Edit
Rename
term-description.php
1.305KB
Hapus
Edit
Rename
widget-group.php
2.381KB
Hapus
Edit
Rename
<=Back
<?php /** * Server-side rendering of the `core/post-date` block. * * @package WordPress */ /** * Renders the `core/post-date` 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 date for the current post wrapped inside "time" tags. */ function render_block_core_post_date( $attributes, $content, $block ) { if ( ! isset( $block->context['postId'] ) ) { return ''; } $post_ID = $block->context['postId']; if ( isset( $attributes['format'] ) && 'human-diff' === $attributes['format'] ) { $post_timestamp = get_post_timestamp( $post_ID ); if ( $post_timestamp > time() ) { // translators: %s: human-readable time difference. $formatted_date = sprintf( __( '%s from now' ), human_time_diff( $post_timestamp ) ); } else { // translators: %s: human-readable time difference. $formatted_date = sprintf( __( '%s ago' ), human_time_diff( $post_timestamp ) ); } } else { $formatted_date = get_the_date( empty( $attributes['format'] ) ? '' : $attributes['format'], $post_ID ); } $unformatted_date = esc_attr( get_the_date( 'c', $post_ID ) ); $classes = array(); if ( isset( $attributes['textAlign'] ) ) { $classes[] = 'has-text-align-' . $attributes['textAlign']; } if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) { $classes[] = 'has-link-color'; } /* * If the "Display last modified date" setting is enabled, * only display the modified date if it is later than the publishing date. */ if ( isset( $attributes['displayType'] ) && 'modified' === $attributes['displayType'] ) { if ( get_the_modified_date( 'Ymdhi', $post_ID ) > get_the_date( 'Ymdhi', $post_ID ) ) { if ( isset( $attributes['format'] ) && 'human-diff' === $attributes['format'] ) { // translators: %s: human-readable time difference. $formatted_date = sprintf( __( '%s ago' ), human_time_diff( get_post_timestamp( $post_ID, 'modified' ) ) ); } else { $formatted_date = get_the_modified_date( empty( $attributes['format'] ) ? '' : $attributes['format'], $post_ID ); } $unformatted_date = esc_attr( get_the_modified_date( 'c', $post_ID ) ); $classes[] = 'wp-block-post-date__modified-date'; } else { return ''; } } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) ); if ( isset( $attributes['isLink'] ) && $attributes['isLink'] ) { $formatted_date = sprintf( '<a href="%1s">%2s</a>', get_the_permalink( $post_ID ), $formatted_date ); } return sprintf( '<div %1$s><time datetime="%2$s">%3$s</time></div>', $wrapper_attributes, $unformatted_date, $formatted_date ); } /** * Registers the `core/post-date` block on the server. * * @since 5.8.0 */ function register_block_core_post_date() { register_block_type_from_metadata( __DIR__ . '/post-date', array( 'render_callback' => 'render_block_core_post_date', ) ); } add_action( 'init', 'register_block_core_post_date' );
Liking