Skip to content

Instantly share code, notes, and snippets.

@carasmo
Created July 14, 2016 19:43
Show Gist options
  • Save carasmo/8c61bf64073bd0f8c735aacdb1b41360 to your computer and use it in GitHub Desktop.
Save carasmo/8c61bf64073bd0f8c735aacdb1b41360 to your computer and use it in GitHub Desktop.
Paginate Comments/Discussion in Genesis Child theme.
<?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 );
@carasmo
Copy link
Author

carasmo commented Jul 14, 2016

screen shot 2016-07-14 at 3 43 17 pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment