Created
April 28, 2017 18:01
-
-
Save raphaelkross/cb84bc6a9355799dea974ba6233c8a19 to your computer and use it in GitHub Desktop.
Revisions
-
raphaelkross created this gist
Apr 28, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ <?php //* Do NOT include the opening php tag add_action( 'loop_end', 'custom_replace_genesis_pagination' ); /** * Replace Genesis' Pagination with FacetWP's. */ function custom_replace_genesis_pagination() { if ( ! ( is_home() || is_archive() || is_search() ) ) { return; } remove_action( 'genesis_after_endwhile', 'genesis_posts_nav' ); add_action( 'genesis_after_endwhile', 'custom_posts_nav' ); } function custom_posts_nav() { if ( ! function_exists( 'facetwp_display' ) ) { return; } // Display pagination echo facetwp_display( 'pager' ); }