X7ROOT File Manager
Current Path:
/home/bloomi9/realworks1.com/landsale-ebook/wp-includes/blocks
home
/
bloomi9
/
realworks1.com
/
landsale-ebook
/
wp-includes
/
blocks
/
📁
..
📄
.htaccess
(206 B)
📁
archives
📄
archives.php
(2.81 KB)
📁
audio
📁
block
📄
block.php
(937 B)
📁
button
📁
buttons
📁
calendar
📄
calendar.php
(1.71 KB)
📁
categories
📄
categories.php
(2.52 KB)
📁
classic
📁
code
📁
column
📁
columns
📁
file
📁
gallery
📁
group
📁
heading
📁
html
📁
image
📄
index.php
(1.48 KB)
📁
latest-comments
📄
latest-comments.php
(4.98 KB)
📁
latest-posts
📄
latest-posts.php
(6.55 KB)
📁
list
📁
media-text
📁
missing
📁
more
📁
nextpage
📁
paragraph
📁
preformatted
📁
pullquote
📁
quote
📁
rss
📄
rss.php
(3.24 KB)
📁
search
📄
search.php
(2.21 KB)
📁
separator
📁
shortcode
📄
shortcode.php
(697 B)
📁
social-link
📄
social-link.php
(53.94 KB)
📁
social-links
📁
spacer
📁
subhead
📁
table
📁
tag-cloud
📄
tag-cloud.php
(1.39 KB)
📁
text-columns
📁
verse
📁
video
Editing: index.php
<?php /** * Used to set up all core blocks used with the block editor. * * @package WordPress */ // Include files required for core blocks registration. require ABSPATH . WPINC . '/blocks/archives.php'; require ABSPATH . WPINC . '/blocks/block.php'; require ABSPATH . WPINC . '/blocks/calendar.php'; require ABSPATH . WPINC . '/blocks/categories.php'; require ABSPATH . WPINC . '/blocks/latest-comments.php'; require ABSPATH . WPINC . '/blocks/latest-posts.php'; require ABSPATH . WPINC . '/blocks/rss.php'; require ABSPATH . WPINC . '/blocks/search.php'; require ABSPATH . WPINC . '/blocks/shortcode.php'; require ABSPATH . WPINC . '/blocks/social-link.php'; require ABSPATH . WPINC . '/blocks/tag-cloud.php'; /** * Registers core block types using metadata files. * Dynamic core blocks are registered separately. * * @since 5.5.0 */ function register_core_block_types_from_metadata() { $block_folders = array( 'audio', 'button', 'buttons', 'classic', 'code', 'column', 'columns', 'file', 'gallery', 'group', 'heading', 'html', 'image', 'list', 'media-text', 'missing', 'more', 'nextpage', 'paragraph', 'preformatted', 'pullquote', 'quote', 'separator', 'social-links', 'spacer', 'subhead', 'table', 'text-columns', 'verse', 'video', ); foreach ( $block_folders as $block_folder ) { register_block_type_from_metadata( ABSPATH . WPINC . '/blocks/' . $block_folder ); } } add_action( 'init', 'register_core_block_types_from_metadata' );
Upload File
Create Folder