WP_Block_Patterns_Registry::unregister( string $pattern_name ): bool

In this article

Unregisters a block pattern.

Parameters

$pattern_namestringrequired
Block pattern name including namespace.

Return

bool True if the pattern was unregistered with success and false otherwise.

Source

public function unregister( $pattern_name ) {
	if ( ! $this->is_registered( $pattern_name ) ) {
		_doing_it_wrong(
			__METHOD__,
			/* translators: %s: Pattern name. */
			sprintf( __( 'Pattern "%s" not found.' ), $pattern_name ),
			'5.5.0'
		);
		return false;
	}

	unset( $this->registered_patterns[ $pattern_name ] );
	unset( $this->registered_patterns_outside_init[ $pattern_name ] );

	return true;
}

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.