Skip to content

Handle multiple networks for admin option

Compare
Choose a tag to compare
@MaximeCulea MaximeCulea released this 25 Sep 10:29
· 427 commits to master since this release

Apply sync on multiple networks like this :

add_filter( 'bea_csf.admin.admin_synchronization_network.query_args', function( $query_args ) {
	$query_args['network__in'] = '';
	return $query_args;
} );