Skip to content

Instantly share code, notes, and snippets.

View Ojay's full-sized avatar

Mark Augias Ojay

  • markaugias.com
  • Falmouth
View GitHub Profile
@Ojay
Ojay / functions.php
Created January 22, 2019 14:53 — forked from lincolnlemos/functions.php
WP-PageNavi - Bootstrap 4
<?php
/**
* Clean up pagination
*/
add_filter( 'wp_pagenavi', __NAMESPACE__ . '\\gc_pagination', 10, 2 );
function gc_pagination($html) {
$out = '';
$out = str_replace('<div','',$html);
$out = str_replace('class=\'wp-pagenavi\' role=\'navigation\'>','',$out);