Code-Snippets-Functions/Execute a function on a child site/WordPress/disable-remote-block-patterns.txt

4 lines
146 B
Text

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