Created
July 14, 2016 19:43
-
-
Save carasmo/8c61bf64073bd0f8c735aacdb1b41360 to your computer and use it in GitHub Desktop.
Paginate Comments/Discussion in Genesis Child theme.
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 characters
<?php | |
// don't use above. Put this in your functions.php file. | |
/** ====================================================================================== | |
* | |
* Paginate Comments | |
* | |
======================================================================================= */ | |
function yourprefix_paginate_comments() { | |
echo '<div class="pagination archive-pagination">'; | |
paginate_comments_links(); | |
echo '</div>'; | |
} | |
add_action( 'genesis_comments', 'yourprefix_paginate_comments', 15 ); |
Author
carasmo
commented
Jul 14, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment