<?php
/**
** replace <a> with <span> for pager
**/
add_filter( 'facetwp_facet_pager_link', function( $html ) {
return str_replace( [ '<a', '/a>' ], [ '<span', '/span>' ], $html );
});
Code snippets for FacetWP
<?php
/**
** replace <a> with <span> for pager
**/
add_filter( 'facetwp_facet_pager_link', function( $html ) {
return str_replace( [ '<a', '/a>' ], [ '<span', '/span>' ], $html );
});