Created
July 6, 2020 10:49
-
-
Save farookibrahim/1f21fe7492df667442cc9a47666ef60b to your computer and use it in GitHub Desktop.
Vodi - TV Shows Rating Filter force 1st page after filter
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
| if( ! function_exists( 'vodi_child_tv_shows_rating_filter_link' ) ) { | |
| function vodi_child_tv_shows_rating_filter_link( $link ) { | |
| $pattern = '/page\\/[0-9]+\\//i'; | |
| $link = preg_replace( $pattern, '', $link ); | |
| return $link; | |
| } | |
| } | |
| add_filter( 'masvideos_tv_shows_rating_filter_link', 'vodi_child_tv_shows_rating_filter_link', 20 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment