I’m running GeneratePress + GP Premium + WP Show Posts Pro
I’m using this (below) to replace the pagination with WP-PageNavi… but I have a few CPTs and WP-PageNavi isn’t being shown there (but it is on the blog).
Any way to also replace the default pagination for WP Show Posts, to use WP-PageNavi?
// WP-PageNavi
add_action('generate_paging_navigation','generate_pagenavi_integration');
function generate_pagenavi_integration()
{
wp_pagenavi();
}