Last active
February 10, 2021 21:26
-
-
Save FriendlyWP/97ba1b24e3872592e4911c4f9c7be9d7 to your computer and use it in GitHub Desktop.
Accessible pager facet for FacetWP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'facetwp_facet_html', 'local_per_page', 10, 2); | |
function local_per_page ( $output, $params ) { | |
if ( 'pager' == $params['facet']['type'] ) { | |
$output = str_replace( 'class="facetwp-per-page-select"', 'class="facetwp-per-page-select" aria-label="Per Page Options"', $output ); | |
} | |
return $output; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment