Astra_Loop::template_parts_comments()
Template part comments
Description
Return
(void)
Source
File: inc/class-astra-loop.php
public function template_parts_comments() {
if ( is_single() || is_page() ) {
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
}
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 1.2.7 | Introduced. |