mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
00401e16b3
Updates the wordpress npm packages and their dependencies to the latest versions, as well as auto-updates to relevant core PHP files. Props youknowriad, joemcgill, spacedmonkey, ramonopoly, peterwilsoncc, bernhard-reiter, tyxla, dmsnell. Fixes #58623. Built from https://develop.svn.wordpress.org/trunk@56065 git-svn-id: http://core.svn.wordpress.org/trunk@55577 1a063a9b-81f0-0310-95a4-ce76da25c4cd
79 lines
1.6 KiB
PHP
79 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Server-side rendering of the `core/footnotes` block.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
/**
|
|
* Renders the `core/footnotes` 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 HTML representing the footnotes.
|
|
*/
|
|
function render_block_core_footnotes( $attributes, $content, $block ) {
|
|
// Bail out early if the post ID is not set for some reason.
|
|
if ( empty( $block->context['postId'] ) ) {
|
|
return '';
|
|
}
|
|
|
|
if ( post_password_required( $block->context['postId'] ) ) {
|
|
return;
|
|
}
|
|
|
|
$footnotes = get_post_meta( $block->context['postId'], 'footnotes', true );
|
|
|
|
if ( ! $footnotes ) {
|
|
return;
|
|
}
|
|
|
|
$footnotes = json_decode( $footnotes, true );
|
|
|
|
if ( count( $footnotes ) === 0 ) {
|
|
return '';
|
|
}
|
|
|
|
$wrapper_attributes = get_block_wrapper_attributes();
|
|
|
|
$block_content = '';
|
|
|
|
foreach ( $footnotes as $footnote ) {
|
|
$block_content .= sprintf(
|
|
'<li id="%1$s">%2$s <a href="#%1$s-link">↩︎</a></li>',
|
|
$footnote['id'],
|
|
$footnote['content']
|
|
);
|
|
}
|
|
|
|
return sprintf(
|
|
'<ol %1$s>%2$s</ol>',
|
|
$wrapper_attributes,
|
|
$block_content
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Registers the `core/footnotes` block on the server.
|
|
*/
|
|
function register_block_core_footnotes() {
|
|
register_post_meta(
|
|
'post',
|
|
'footnotes',
|
|
array(
|
|
'show_in_rest' => true,
|
|
'single' => true,
|
|
'type' => 'string',
|
|
)
|
|
);
|
|
register_block_type_from_metadata(
|
|
__DIR__ . '/footnotes',
|
|
array(
|
|
'render_callback' => 'render_block_core_footnotes',
|
|
)
|
|
);
|
|
}
|
|
add_action( 'init', 'register_block_core_footnotes' );
|