Include private posts in FiboSearch

Include private posts in FiboSearch on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'dgwt/wcas/search_query/args', function ( $args ) {
	if ( current_user_can( 'manage_options' ) ) {
		$args['post_status'] = [ 'publish', 'private' ];
	}
   
   return $args;
} );

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