/
githubmirror
/
gutenberg
Обзор
Документация
Войти
/
githubmirror
/
gutenberg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
lib/demo.php
278 строк
13 KB
Riad Benguella
Experiments: Move screen under Settings, drop top-level Gutenberg menu and Demo page (#79456)
25 июн 2026, 17:52
Не верифицирован
25 июн 2026, 17:52
0ece78d
Код
Авторство
О чём код?
<?php /** * Gutenberg demo content. * * Surfaces the classic Gutenberg demo content through an "Insert demo content" * command (Cmd/Ctrl+K), keeping it available for testing ideas without a * dedicated admin page. * * @package gutenberg */ if ( ! defined( 'ABSPATH' ) ) { die( 'Silence is golden.' ); } /** * Returns the block markup for the Gutenberg demo content. * * @return string Serialized block content. */ function gutenberg_demo_content() { ob_start(); ?> <!-- wp:cover {"url":"https://cldup.com/Fz-ASbo2s3.jpg","dimRatio":50,"align":"wide"} --> <div class="wp-block-cover alignwide is-light"><img class="wp-block-cover__image-background" src="https://cldup.com/Fz-ASbo2s3.jpg" data-object-fit="cover"/><span aria-hidden="true" class="wp-block-cover__background has-background-dim"></span><div class="wp-block-cover__inner-container"><!-- wp:paragraph {"align":"center","placeholder":"Write title…","textColor":"white","fontSize":"large"} --> <p class="has-text-align-center has-white-color has-text-color has-large-font-size"><?php _e( 'Of Mountains & Printing Presses', 'gutenberg' ); ?></p> <!-- /wp:paragraph --></div></div> <!-- /wp:cover --> <!-- wp:paragraph --> <p><?php _e( 'The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of <em>pieces of content</em>—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p><?php _e( 'What you are reading now is a <strong>text block</strong> the most basic block of all. The text block has its own controls to be moved freely around the post...', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:paragraph {"align":"right"} --> <p class="has-text-align-right"><?php _e( '... like this one, which is right aligned.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p><?php _e( 'Headings are separate blocks as well, which helps with the outline and organization of your content.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2 class="wp-block-heading"><?php _e( 'A Picture is Worth a Thousand Words', 'gutenberg' ); ?></h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p><?php _e( 'Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:image {"align":"center"} --> <figure class="wp-block-image aligncenter"><img src="https://cldup.com/cXyG__fTLN.jpg" alt="<?php esc_attr_e( 'Beautiful landscape', 'gutenberg' ); ?>" /> <figcaption class="wp-element-caption"><?php _e( 'If your theme supports it, you’ll see the "wide" button on the image toolbar. Give it a try.', 'gutenberg' ); ?></figcaption> </figure> <!-- /wp:image --> <!-- wp:paragraph --> <p><?php _e( 'Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2 class="wp-block-heading"><?php _e( 'The <em>Inserter</em> Tool', 'gutenberg' ); ?></h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p><?php _e( 'Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the <code>(+)</code> button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p><?php _e( 'Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:list {"className":"wp-block-list"} --> <ul class="wp-block-list"> <!-- wp:list-item --> <li><?php _e( 'Text & Headings', 'gutenberg' ); ?></li> <!-- /wp:list-item --> <!-- wp:list-item --> <li><?php _e( 'Images & Videos', 'gutenberg' ); ?></li> <!-- /wp:list-item --> <!-- wp:list-item --> <li><?php _e( 'Galleries', 'gutenberg' ); ?></li> <!-- /wp:list-item --> <!-- wp:list-item --> <li><?php _e( 'Embeds, like YouTube, Tweets, or other WordPress posts.', 'gutenberg' ); ?></li> <!-- /wp:list-item --> <!-- wp:list-item --> <li><?php _e( 'Layout blocks, like Buttons, Hero Images, Separators, etc.', 'gutenberg' ); ?></li> <!-- /wp:list-item --> <!-- wp:list-item --> <li><?php _e( 'And <em>Lists</em> like this one of course :)', 'gutenberg' ); ?></li> <!-- /wp:list-item --> </ul> <!-- /wp:list --> <!-- wp:separator {"opacity":"css"} --> <hr class="wp-block-separator has-css-opacity" /> <!-- /wp:separator --> <!-- wp:heading --> <h2 class="wp-block-heading"><?php _e( 'Visual Editing', 'gutenberg' ); ?></h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p><?php _e( 'A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:quote --> <blockquote class="wp-block-quote"> <!-- wp:paragraph --> <p><?php _e( 'The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <cite><?php _e( 'Matt Mullenweg, 2017', 'gutenberg' ); ?></cite> </blockquote> <!-- /wp:quote --> <!-- wp:paragraph --> <p><?php _e( 'The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p><?php _e( 'Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:gallery {"columns":2,"linkTo":"none"} --> <figure class="wp-block-gallery has-nested-images columns-2 is-cropped"> <!-- wp:image {"sizeSlug":"large","linkDestination":"none"} --> <figure class="wp-block-image size-large"><img src="https://cldup.com/n0g6ME5VKC.jpg" alt="" /></figure> <!-- /wp:image --> <!-- wp:image {"sizeSlug":"large","linkDestination":"none"} --> <figure class="wp-block-image size-large"><img src="https://cldup.com/ZjESfxPI3R.jpg" alt="" /></figure> <!-- /wp:image --> <!-- wp:image {"sizeSlug":"large","linkDestination":"none"} --> <figure class="wp-block-image size-large"><img src="https://cldup.com/EKNF8xD2UM.jpg" alt="" /></figure> <!-- /wp:image --> </figure> <!-- /wp:gallery --> <!-- wp:paragraph --> <p><?php _e( 'You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2 class="wp-block-heading"><?php _e( 'Media Rich', 'gutenberg' ); ?></h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p><?php _e( 'If you combine the new <strong>wide</strong> and <strong>full-wide</strong> alignments with galleries, you can create a very media rich layout, very quickly:', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:image {"align":"full"} --> <figure class="wp-block-image alignfull"><img src="https://cldup.com/8lhI-gKnI2.jpg" alt="<?php _e( 'Accessibility is important — don’t forget image alt attribute', 'gutenberg' ); ?>" /></figure> <!-- /wp:image --> <!-- wp:paragraph --> <p><?php _e( 'Sure, the full-wide image can be pretty big. But sometimes the image is worth it.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:gallery {"linkTo":"none","align":"wide"} --> <figure class="wp-block-gallery alignwide has-nested-images columns-default is-cropped"> <!-- wp:image {"sizeSlug":"large","linkDestination":"none"} --> <figure class="wp-block-image size-large"><img src="https://cldup.com/_rSwtEeDGD.jpg" alt="" /></figure> <!-- /wp:image --> <!-- wp:image {"sizeSlug":"large","linkDestination":"none"} --> <figure class="wp-block-image size-large"><img src="https://cldup.com/L-cC3qX2DN.jpg" alt="" /></figure> <!-- /wp:image --> </figure> <!-- /wp:gallery --> <!-- wp:paragraph --> <p><?php _e( 'The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p><?php _e( 'Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:embed {"url":"https://vimeo.com/22439234","type":"video","providerNameSlug":"vimeo","responsive":true,"align":"wide","className":"wp-has-aspect-ratio wp-embed-aspect-16-9"} --> <figure class="wp-block-embed alignwide is-type-video is-provider-vimeo wp-block-embed-vimeo wp-has-aspect-ratio wp-embed-aspect-16-9"><div class="wp-block-embed__wrapper"> https://vimeo.com/22439234 </div></figure> <!-- /wp:embed --> <!-- wp:paragraph --> <p><?php _e( 'You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:pullquote --> <figure class="wp-block-pullquote"><blockquote><p><?php _e( 'Code is Poetry', 'gutenberg' ); ?></p><cite><?php _e( 'The WordPress community', 'gutenberg' ); ?></cite></blockquote></figure> <!-- /wp:pullquote --> <!-- wp:paragraph {"align":"center"} --> <p class="has-text-align-center"> <em> <?php printf( /* translators: %s: Gutenberg GitHub repository URL */ __( 'If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the <a href="%s">GitHub repository</a>.', 'gutenberg' ), 'https://github.com/WordPress/gutenberg' ); ?> </em> </p> <!-- /wp:paragraph --> <!-- wp:button {"className":"aligncenter"} --> <div class="wp-block-button aligncenter"><a class="wp-block-button__link wp-element-button" href="https://github.com/WordPress/gutenberg"><?php _e( 'Help build Gutenberg', 'gutenberg' ); ?></a></div> <!-- /wp:button --> <!-- wp:separator {"opacity":"css"} --> <hr class="wp-block-separator has-css-opacity" /> <!-- /wp:separator --> <!-- wp:paragraph {"align":"center"} --> <p class="has-text-align-center"><?php _e( 'Thanks for testing Gutenberg!', 'gutenberg' ); ?></p> <!-- /wp:paragraph --> <!-- wp:paragraph {"align":"center"} --> <p class="has-text-align-center">👋</p> <!-- /wp:paragraph --> <?php return ob_get_clean(); } /** * Registers an editor command that inserts the Gutenberg demo content. * * The demo content is exposed to the editor as an inline variable and the * command is registered with an inline script, so the whole demo feature stays * contained in this file. */ function gutenberg_enqueue_demo_command() { $handle = 'gutenberg-demo-command'; wp_register_script( $handle, false, array( 'wp-commands', 'wp-data', 'wp-blocks', 'wp-block-editor', 'wp-i18n' ), false, true ); wp_enqueue_script( $handle ); // Expose the demo content directly so the command can insert it without a // REST round-trip to look the hidden pattern back up. wp_add_inline_script( $handle, 'window.gutenbergDemoContent = ' . wp_json_encode( gutenberg_demo_content() ) . ';', 'before' ); $script = <<<'JS' ( function () { wp.data.dispatch( 'core/commands' ).registerCommand( { name: 'gutenberg/insert-demo-content', label: wp.i18n.__( 'Insert demo content', 'gutenberg' ), searchLabel: wp.i18n.__( 'Insert Gutenberg demo content', 'gutenberg' ), keywords: [ 'demo', 'gutenberg', 'sample', 'test' ], category: 'command', callback: function ( { close } ) { close(); if ( ! window.gutenbergDemoContent ) { return; } wp.data .dispatch( 'core/block-editor' ) .insertBlocks( wp.blocks.parse( window.gutenbergDemoContent ) ); }, } ); } )(); JS; wp_add_inline_script( $handle, $script ); } add_action( 'enqueue_block_editor_assets', 'gutenberg_enqueue_demo_command' );