Skip to content

Instantly share code, notes, and snippets.

View chidt's full-sized avatar

Đỗ Tiến Chí chidt

  • Sapporo, Japan
View GitHub Profile
@chidt
chidt / pagenavi html
Created December 6, 2019 03:30 — forked from dmassiani/pagenavi html
Change html for wp pagenavi
######################
# 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 = '';