wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_remove_theme_attribute_from_template_part_block › WordPress Function

Seit6.4.0
Veraltetn/v
_remove_theme_attribute_from_template_part_block ( $block )
Zugriff:
  • private
Parameter:
  • (array) $block a parsed block.
    Erforderlich: Ja
Definiert in:
Codex:

Removes the `theme` attribute from a given template part block.



Quellcode

function _remove_theme_attribute_from_template_part_block( &$block ) {
	if (
		'core/template-part' === $block['blockName'] &&
		isset( $block['attrs']['theme'] )
	) {
		unset( $block['attrs']['theme'] );
	}
}