Disable remote block patterns in WordPress

Disable remote block patterns in WordPress on child sites.

Snippet Type

Execute on Child Sites

Snippet

function disable_remote_patterns_filter() {
	return false;
}
add_filter( 'should_load_remote_block_patterns', 'disable_remote_patterns_filter' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.