AnsPress_Comment_Hooks::comments_template( string $template )
Description #
Override comments template for single question page.
This will prevent post comments below single question.
Parameters #
- $templatestring (Required) Template.
Source #
File: includes/comments.php
public static function comments_template( $template ) {
if ( is_singular( 'question' ) || is_anspress() ) {
$template = ap_get_theme_location( 'post-comments.php' );
}
return $template;
}
Expand full source code Collapse full source code View on GitHub: includes/comments.php:206
Add your comment