###################### # Change html pagenavi for transform like bootstrap ###################### //attach our function to the wp_pagenavi filter add_filter( 'wp_pagenavi', 'wd_pagination', 10, 2 ); //customize the PageNavi HTML before it is output function wd_pagination($html) { $out = ''; //wrap a's and span's in li's $out = str_replace("","",$out); $out = str_replace("","",$out); $out = str_replace("
","",$out); $out = str_replace("
","",$out); return ''; }