File Manager Lite
Dir:
/home/atomylvb/jarangomd.com/old/wp-includes/blocks
Upload
[..]
accordion/
Rename
Del
accordion-heading/
Rename
Del
accordion-item/
Rename
Del
accordion-panel/
Rename
Del
audio/
Rename
Del
avatar/
Rename
Del
block/
Rename
Del
button/
Rename
Del
buttons/
Rename
Del
calendar/
Rename
Del
categories/
Rename
Del
code/
Rename
Del
column/
Rename
Del
columns/
Rename
Del
comment-author-name/
Rename
Del
comment-author-name.php (2.08 KB)
Edit
Rename
Del
comment-content/
Rename
Del
comment-date/
Rename
Del
comment-edit-link/
Rename
Del
comment-reply-link/
Rename
Del
comment-template/
Rename
Del
comments/
Rename
Del
comments-pagination/
Rename
Del
comments-pagination-next/
Rename
Del
comments-pagination-next.php (1.88 KB)
Edit
Rename
Del
comments-pagination-numbers/
Rename
Del
comments-pagination-previous/
Rename
Del
comments-title/
Rename
Del
cover/
Rename
Del
cover.php (3.1 KB)
Edit
Rename
Del
details/
Rename
Del
embed/
Rename
Del
file/
Rename
Del
footnotes/
Rename
Del
freeform/
Rename
Del
gallery/
Rename
Del
group/
Rename
Del
heading/
Rename
Del
home-link/
Rename
Del
image/
Rename
Del
latest-comments/
Rename
Del
latest-posts/
Rename
Del
legacy-widget/
Rename
Del
legacy-widget.php (3.92 KB)
Edit
Rename
Del
list/
Rename
Del
list-item/
Rename
Del
loginout/
Rename
Del
math/
Rename
Del
media-text/
Rename
Del
more/
Rename
Del
navigation/
Rename
Del
navigation-link/
Rename
Del
navigation-submenu/
Rename
Del
nextpage/
Rename
Del
page-list/
Rename
Del
page-list-item/
Rename
Del
page-list-item.php (361 B)
Edit
Rename
Del
paragraph/
Rename
Del
post-author/
Rename
Del
post-author-biography/
Rename
Del
post-author-name/
Rename
Del
post-author.php (2.67 KB)
Edit
Rename
Del
post-comments-count/
Rename
Del
post-comments-form/
Rename
Del
post-comments-link/
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-no-results.php (1.8 KB)
Edit
Rename
Del
query-pagination/
Rename
Del
query-pagination-next/
Rename
Del
query-pagination-next.php (3.69 KB)
Edit
Rename
Del
query-pagination-numbers/
Rename
Del
query-pagination-previous/
Rename
Del
query-title/
Rename
Del
query-total/
Rename
Del
quote/
Rename
Del
read-more/
Rename
Del
rss/
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-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: legacy-widget.php
<?php /** * Server-side rendering of the `core/legacy-widget` block. * * @package WordPress */ /** * Renders the 'core/legacy-widget' block. * * @since 5.8.0 * * @global WP_Widget_Factory $wp_widget_factory. * * @param array $attributes The block attributes. * * @return string Rendered block. */ function render_block_core_legacy_widget( $attributes ) { global $wp_widget_factory; if ( isset( $attributes['id'] ) ) { $sidebar_id = wp_find_widgets_sidebar( $attributes['id'] ); return wp_render_widget( $attributes['id'], $sidebar_id ); } if ( ! isset( $attributes['idBase'] ) ) { return ''; } $id_base = $attributes['idBase']; $widget_key = $wp_widget_factory->get_widget_key( $id_base ); $widget_object = $wp_widget_factory->get_widget_object( $id_base ); if ( ! $widget_key || ! $widget_object ) { return ''; } if ( isset( $attributes['instance']['encoded'], $attributes['instance']['hash'] ) ) { $serialized_instance = base64_decode( $attributes['instance']['encoded'] ); if ( ! hash_equals( wp_hash( $serialized_instance ), (string) $attributes['instance']['hash'] ) ) { return ''; } $instance = unserialize( $serialized_instance ); } else { $instance = array(); } $args = array( 'widget_id' => $widget_object->id, 'widget_name' => $widget_object->name, ); ob_start(); the_widget( $widget_key, $instance, $args ); return ob_get_clean(); } /** * Registers the 'core/legacy-widget' block. * * @since 5.8.0 */ function register_block_core_legacy_widget() { register_block_type_from_metadata( __DIR__ . '/legacy-widget', array( 'render_callback' => 'render_block_core_legacy_widget', ) ); } add_action( 'init', 'register_block_core_legacy_widget' ); /** * Intercepts any request with legacy-widget-preview in the query param and, if * set, renders a page containing a preview of the requested Legacy Widget * block. * * @since 5.8.0 */ function handle_legacy_widget_preview_iframe() { if ( empty( $_GET['legacy-widget-preview'] ) ) { return; } if ( ! current_user_can( 'edit_theme_options' ) ) { return; } define( 'IFRAME_REQUEST', true ); ?> <!doctype html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="profile" href="https://gmpg.org/xfn/11" /> <?php wp_head(); ?> <style> /* Reset theme styles */ html, body, #page, #content { padding: 0 !important; margin: 0 !important; } /* Hide root level text nodes */ body { font-size: 0 !important; } /* Hide non-widget elements */ body *:not(#page):not(#content):not(.widget):not(.widget *) { display: none !important; font-size: 0 !important; height: 0 !important; left: -9999px !important; max-height: 0 !important; max-width: 0 !important; opacity: 0 !important; pointer-events: none !important; position: absolute !important; top: -9999px !important; transform: translate(-9999px, -9999px) !important; visibility: hidden !important; z-index: -999 !important; } /* Restore widget font-size */ .widget { font-size: var(--global--font-size-base); } </style> </head> <body <?php body_class(); ?>> <div id="page" class="site"> <div id="content" class="site-content"> <?php $registry = WP_Block_Type_Registry::get_instance(); $block = $registry->get_registered( 'core/legacy-widget' ); echo $block->render( $_GET['legacy-widget-preview'] ); ?> </div><!-- #content --> </div><!-- #page --> <?php wp_footer(); ?> </body> </html> <?php exit; } // Use admin_init instead of init to ensure get_current_screen function is already available. // This isn't strictly required, but enables better compatibility with existing plugins. // See: https://github.com/WordPress/gutenberg/issues/32624. add_action( 'admin_init', 'handle_legacy_widget_preview_iframe', 20 );
Simpan