-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathsingle.php
More file actions
43 lines (37 loc) · 1.18 KB
/
single.php
File metadata and controls
43 lines (37 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* Single Posts Template
*
* @file single.php
* @package Responsive
* @author CyberChimps
* @copyright 2020 CyberChimps
* @license license.txt
* @version Release: 1.0
* @filesource wp-content/themes/responsive/single.php
* @link http://codex.wordpress.org/Theme_Development#Single_Post_.28single.php.29
* @since available since Release 1.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header();
Responsive\responsive_wrapper_top(); // before wrapper content hook.
// Elementor `single` location.
if ( ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'single' ) ) && ! ( function_exists( 'rea_theme_template_render_at_location' ) && rea_theme_template_render_at_location( 'single' ) ) ) {
Responsive\responsive_wrapper();
while ( have_posts() ) :
the_post();
get_template_part( 'partials/single/layout', get_post_type() );
comments_template();
endwhile;
?>
</main><!-- end of #primary -->
<?php
get_sidebar();
Responsive\responsive_wrapper_close();
}
Responsive\responsive_wrapper_end(); // after wrapper hook.
get_footer();
?>