Skip to content

Instantly share code, notes, and snippets.

@bnecreative
Created February 19, 2020 19:00
Show Gist options
  • Save bnecreative/b7b6170e655d1cbd2486c201802738d6 to your computer and use it in GitHub Desktop.
Save bnecreative/b7b6170e655d1cbd2486c201802738d6 to your computer and use it in GitHub Desktop.
Sweetness - Add comments to page
<?php // don't copy this line...
/*
* Display comments in pages
*
* @hook page.php
*
*/
add_action( 'bne_page_footer', function() {
if( comments_open() || '0' != get_comments_number() ) {
comments_template();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment