PATH:
home2
/
oltarimozi
/
public_html
/
wp-includes
/
blocks
<?php /** * Server-side rendering of the `core/details` block. * * @package WordPress */ /** * Sets fetchpriority="low" on all IMG tags within the collapsed Details block. * * Images in a collapsed Details block are hidden until the block is expanded, so they should * not compete with any resources in the critical rendering path, such as the LCP element image. * * @since 7.0.0 * * @param string $block_content The block content. * @param array $block The full block, including name and attributes. * @return string Modified HTML with fetchpriority="low" on all IMG tags when the showContent attribute is false. */ function block_core_details_set_img_fetchpriority_low( $block_content, array $block ): string { if ( ! is_string( $block_content ) ) { return ''; } // If the Details block is open by default, short-circuit to let core add fetchpriority=high if appropriate. if ( $block['attrs']['showContent'] ?? false ) { return $block_content; } $tags = new WP_HTML_Tag_Processor( $block_content ); while ( $tags->next_tag( 'IMG' ) ) { $tags->set_attribute( 'fetchpriority', 'low' ); } return $tags->get_updated_html(); } add_filter( 'render_block_core/details', 'block_core_details_set_img_fetchpriority_low', 10, 2 ); /** * Registers the `core/details` block on server. * * @since 7.0.0 */ function register_block_core_details() { register_block_type_from_metadata( __DIR__ . '/details' ); } add_action( 'init', 'register_block_core_details' );
[+]
..
[+]
navigation-submenu
[+]
term-template
[+]
comment-content
[-] post-comments-form.php
[edit]
[+]
latest-comments
[-] image.php
[edit]
[+]
html
[-] file.php
[edit]
[+]
avatar
[-] accordion-item.php
[edit]
[-] navigation-link.php
[edit]
[+]
preformatted
[-] latest-comments.php
[edit]
[-] comment-edit-link.php
[edit]
[-] read-more.php
[edit]
[+]
quote
[-] calendar.php
[edit]
[+]
accordion-heading
[+]
tag-cloud
[+]
comments-title
[+]
media-text
[-] post-author-name.php
[edit]
[-] shortcode.php
[edit]
[-] post-comments-link.php
[edit]
[-] gallery.php
[edit]
[+]
search
[+]
query-pagination-next
[+]
loginout
[-] list.php
[edit]
[-] require-static-blocks.php
[edit]
[+]
terms-query
[-] comment-reply-link.php
[edit]
[-] button.php
[edit]
[+]
more
[-] search.php
[edit]
[+]
table
[-] rss.php
[edit]
[+]
post-featured-image
[+]
navigation-overlay-close
[-] comments-pagination-previous.php
[edit]
[+]
term-description
[+]
accordion-item
[+]
heading
[+]
comments-pagination
[+]
columns
[-] template-part.php
[edit]
[-] site-tagline.php
[edit]
[+]
site-title
[-] post-navigation-link.php
[edit]
[-] paragraph.php
[edit]
[-] query-total.php
[edit]
[+]
breadcrumbs
[+]
group
[+]
video
[-] comment-template.php
[edit]
[+]
comments
[-] details.php
[edit]
[+]
accordion
[+]
math
[+]
comments-pagination-numbers
[-] site-logo.php
[edit]
[-] breadcrumbs.php
[edit]
[+]
post-terms
[+]
list
[+]
comment-date
[+]
archives
[+]
categories
[+]
page-list-item
[+]
post-excerpt
[+]
post-title
[+]
navigation-link
[-] term-count.php
[edit]
[-] page-list.php
[edit]
[+]
comment-edit-link
[-] post-title.php
[edit]
[-] navigation-overlay-close.php
[edit]
[-] latest-posts.php
[edit]
[-] loginout.php
[edit]
[+]
rss
[+]
accordion-panel
[+]
query-pagination
[-] site-title.php
[edit]
[+]
query-no-results
[-] comment-date.php
[edit]
[-] widget-group.php
[edit]
[+]
code
[+]
file
[+]
missing
[-] archives.php
[edit]
[+]
social-link
[-] post-date.php
[edit]
[-] term-name.php
[edit]
[-] require-dynamic-blocks.php
[edit]
[+]
comment-author-name
[-] heading.php
[edit]
[-] post-author.php
[edit]
[-] cover.php
[edit]
[+]
calendar
[+]
home-link
[+]
query-pagination-previous
[+]
site-tagline
[+]
audio
[-] navigation.php
[edit]
[+]
freeform
[-] media-text.php
[edit]
[-] index.php
[edit]
[+]
post-date
[+]
block
[-] block.php
[edit]
[-] comment-content.php
[edit]
[+]
read-more
[-] comments-pagination-next.php
[edit]
[-] avatar.php
[edit]
[+]
post-comments-form
[-] post-time-to-read.php
[edit]
[+]
query-total
[+]
site-logo
[+]
list-item
[-] post-comments-count.php
[edit]
[+]
pullquote
[+]
legacy-widget
[+]
post-comments-count
[+]
latest-posts
[-] page-list-item.php
[edit]
[-] query.php
[edit]
[-] post-excerpt.php
[edit]
[-] query-no-results.php
[edit]
[+]
post-author
[+]
gallery
[-] term-description.php
[edit]
[-] query-pagination.php
[edit]
[+]
comment-reply-link
[-] video.php
[edit]
[+]
embed
[+]
nextpage
[-] accordion.php
[edit]
[+]
query-pagination-numbers
[+]
post-comments-link
[-] legacy-widget.php
[edit]
[-] comments-pagination.php
[edit]
[+]
comment-template
[-] blocks-json.php
[edit]
[-] post-template.php
[edit]
[+]
verse
[+]
template-part
[-] query-pagination-numbers.php
[edit]
[+]
post-navigation-link
[-] query-pagination-previous.php
[edit]
[-] post-content.php
[edit]
[-] navigation-submenu.php
[edit]
[+]
post-template
[+]
query-title
[+]
button
[+]
post-time-to-read
[-] post-featured-image.php
[edit]
[+]
pattern
[-] social-link.php
[edit]
[+]
comments-pagination-previous
[+]
comments-pagination-next
[+]
post-author-biography
[+]
navigation
[+]
image
[+]
text-columns
[-] comments-pagination-numbers.php
[edit]
[+]
spacer
[+]
icon
[-] comments-title.php
[edit]
[+]
buttons
[+]
paragraph
[-] tag-cloud.php
[edit]
[+]
separator
[+]
term-count
[+]
page-list
[+]
shortcode
[+]
social-links
[+]
query
[+]
term-name
[-] query-pagination-next.php
[edit]
[+]
details
[-] comment-author-name.php
[edit]
[-] categories.php
[edit]
[-] icon.php
[edit]
[-] footnotes.php
[edit]
[+]
cover
[-] home-link.php
[edit]
[-] post-author-biography.php
[edit]
[+]
widget-group
[+]
post-content
[-] term-template.php
[edit]
[+]
column
[+]
post-author-name
[-] post-terms.php
[edit]
[-] comments.php
[edit]
[-] pattern.php
[edit]
[+]
footnotes
[-] query-title.php
[edit]