Replace HTML of dots part of Pager facet

<?php
/**
 ** Replace "dots" section of pager with custom HTML to remove the <a> links,
 ** so that accessibility does not treat it as a link to be clicked.
 ** Also see: https://facetwp.com/help-center/developers/hooks/output-hooks/facetwp_facet_pager_link/#replace-or-customize-the-dots
 **/
add_filter( 'facetwp_facet_pager_link', function( $html, $params ) {
  if ( '' == $params['page'] ) {
    $html = '<span class="facetwp-page dots">…</span>';
  }
  return $html;
}, 10, 2 );