X7ROOT File Manager
Current Path:
/home/notabjze/tailoredplastiq.com/wp-admin
home
/
notabjze
/
tailoredplastiq.com
/
wp-admin
/
ðŸ“
..
📄
about.php
(22.96 KB)
📄
admin-ajax.php
(4.83 KB)
📄
admin-footer.php
(2.76 KB)
📄
admin-functions.php
(406 B)
📄
admin-header.php
(8.82 KB)
📄
admin-post.php
(2 KB)
📄
admin.php
(12.26 KB)
📄
async-upload.php
(4.56 KB)
📄
authorize-application.php
(10.02 KB)
📄
comment.php
(11.25 KB)
📄
contribute.php
(5.51 KB)
📄
credits.php
(3.85 KB)
ðŸ“
css
📄
custom-background.php
(416 B)
📄
custom-header.php
(426 B)
📄
customize.php
(10.61 KB)
📄
edit-comments.php
(14.25 KB)
📄
edit-form-advanced.php
(28.36 KB)
📄
edit-form-blocks.php
(10.82 KB)
📄
edit-form-comment.php
(8.34 KB)
📄
edit-link-form.php
(6.15 KB)
📄
edit-tag-form.php
(10.41 KB)
📄
edit-tags.php
(21.87 KB)
📄
edit.php
(19.03 KB)
📄
erase-personal-data.php
(7.36 KB)
📄
export-personal-data.php
(7.76 KB)
📄
export.php
(10.99 KB)
📄
freedoms.php
(4.5 KB)
ðŸ“
images
📄
import.php
(7.4 KB)
ðŸ“
includes
📄
index.php
(7.67 KB)
📄
install-helper.php
(6.8 KB)
📄
install.php
(17.09 KB)
ðŸ“
js
📄
link-add.php
(742 B)
📄
link-manager.php
(4.16 KB)
📄
link-parse-opml.php
(2.63 KB)
📄
link.php
(2.7 KB)
📄
load-scripts.php
(1.66 KB)
📄
load-styles.php
(2.56 KB)
ðŸ“
maint
📄
media-new.php
(3.18 KB)
📄
media-upload.php
(3.49 KB)
📄
media.php
(763 B)
📄
menu-header.php
(9.84 KB)
📄
menu.php
(16.86 KB)
📄
moderation.php
(307 B)
📄
ms-admin.php
(196 B)
📄
ms-delete-site.php
(4.19 KB)
📄
ms-edit.php
(216 B)
📄
ms-options.php
(223 B)
📄
ms-sites.php
(215 B)
📄
ms-themes.php
(217 B)
📄
ms-upgrade-network.php
(219 B)
📄
ms-users.php
(215 B)
📄
my-sites.php
(4.68 KB)
📄
nav-menus.php
(46.67 KB)
ðŸ“
network
📄
network.php
(5.35 KB)
📄
options-discussion.php
(15.58 KB)
📄
options-general.php
(16.69 KB)
📄
options-head.php
(492 B)
📄
options-media.php
(6.35 KB)
📄
options-permalink.php
(21.12 KB)
📄
options-privacy.php
(9.92 KB)
📄
options-reading.php
(9.92 KB)
📄
options-writing.php
(9.06 KB)
📄
options.php
(12.67 KB)
📄
plugin-editor.php
(13.11 KB)
📄
plugin-install.php
(6.78 KB)
📄
plugins.php
(28.6 KB)
📄
post-new.php
(2.64 KB)
📄
post.php
(9.85 KB)
📄
press-this.php
(2.33 KB)
📄
privacy-policy-guide.php
(3.61 KB)
📄
privacy.php
(2.5 KB)
📄
profile.php
(283 B)
📄
revision.php
(5.45 KB)
📄
setup-config.php
(17.33 KB)
📄
site-editor.php
(5.9 KB)
📄
site-health-info.php
(3.93 KB)
📄
site-health.php
(10.02 KB)
📄
term.php
(2.2 KB)
📄
theme-editor.php
(14.9 KB)
📄
theme-install.php
(23.23 KB)
📄
themes.php
(45.64 KB)
📄
tools.php
(3.43 KB)
📄
update-core.php
(45.27 KB)
📄
update.php
(12.43 KB)
📄
upgrade-functions.php
(341 B)
📄
upgrade.php
(5.54 KB)
📄
upload.php
(14.64 KB)
ðŸ“
user
📄
user-edit.php
(38.81 KB)
📄
user-new.php
(23.68 KB)
📄
users.php
(21.95 KB)
📄
widgets-form-blocks.php
(2.48 KB)
📄
widgets-form.php
(19.05 KB)
📄
widgets.php
(1.09 KB)
Editing: widgets-form-blocks.php
<?php /** * The block-based widgets editor, for use in widgets.php. * * @package WordPress * @subpackage Administration */ // Don't load directly. if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } // Flag that we're loading the block editor. $current_screen = get_current_screen(); $current_screen->is_block_editor( true ); $block_editor_context = new WP_Block_Editor_Context( array( 'name' => 'core/edit-widgets' ) ); $preload_paths = array( array( rest_get_route_for_post_type_items( 'attachment' ), 'OPTIONS' ), '/wp/v2/widget-types?context=edit&per_page=-1', '/wp/v2/sidebars?context=edit&per_page=-1', '/wp/v2/widgets?context=edit&per_page=-1&_embed=about', ); block_editor_rest_api_preload( $preload_paths, $block_editor_context ); $editor_settings = get_block_editor_settings( array_merge( get_legacy_widget_block_editor_settings(), array( 'styles' => get_block_editor_theme_styles() ) ), $block_editor_context ); // The widgets editor does not support the Block Directory, so don't load any of // its assets. This also prevents 'wp-editor' from being enqueued which we // cannot load in the widgets screen because many widget scripts rely on `wp.editor`. remove_action( 'enqueue_block_editor_assets', 'wp_enqueue_editor_block_directory_assets' ); wp_add_inline_script( 'wp-edit-widgets', sprintf( 'wp.domReady( function() { wp.editWidgets.initialize( "widgets-editor", %s ); } );', wp_json_encode( $editor_settings ) ) ); // Preload server-registered block schemas. wp_add_inline_script( 'wp-blocks', 'wp.blocks.unstable__bootstrapServerSideBlockDefinitions(' . wp_json_encode( get_block_editor_server_block_settings() ) . ');' ); wp_add_inline_script( 'wp-blocks', sprintf( 'wp.blocks.setCategories( %s );', wp_json_encode( get_block_categories( $block_editor_context ) ) ), 'after' ); wp_enqueue_script( 'wp-edit-widgets' ); wp_enqueue_script( 'admin-widgets' ); wp_enqueue_style( 'wp-edit-widgets' ); /** This action is documented in wp-admin/edit-form-blocks.php */ do_action( 'enqueue_block_editor_assets' ); /** This action is documented in wp-admin/widgets-form.php */ do_action( 'sidebar_admin_setup' ); require_once ABSPATH . 'wp-admin/admin-header.php'; /** This action is documented in wp-admin/widgets-form.php */ do_action( 'widgets_admin_page' ); ?> <div id="widgets-editor" class="blocks-widgets-container"></div> <?php /** This action is documented in wp-admin/widgets-form.php */ do_action( 'sidebar_admin_page' ); require_once ABSPATH . 'wp-admin/admin-footer.php';
Upload File
Create Folder