Advertisement
phpface

Untitled

Aug 16th, 2021
1,877
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. remove_action('videotube_pagination', 'videotube_pagination', 10, 1);
  2.  
  3. function videotube_wp_pagenavi( $query = array() ){
  4.     if( function_exists( 'wp_pagenavi' ) ){
  5.         wp_pagenavi( array(
  6.             'query' =>  $query ? $query : $GLOBALS['wp_query']
  7.         ) );
  8.     }
  9. }
  10. add_action( 'videotube_pagination', 'videotube_wp_pagenavi', 20, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement