-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-elementor_library.php
56 lines (41 loc) · 1.43 KB
/
single-elementor_library.php
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
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* This is the most generic template file in a WordPress theme and one of the
* two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* For example, it puts together the home page when no home.php file exists.
*
* Learn more: https://codex.wordpress.org/Template_Hierarchy
*
* @package Bakerfresh WordPress theme
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
get_header();
if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'single' ) ) {
while (have_posts()) :
the_post();
?>
<main <?php post_class('site-main'); ?> role="main">
<div id="site-content-wrap">
<div class="site-content--default">
<div class="page-content">
<?php
the_content();
?>
</div><!-- .page-content -->
<div class="clearfix"></div>
<?php
wp_link_pages( array(
'before' => '<div class="clearfix"></div><div class="page-links">' . esc_html__( 'Pages:', 'trikon' ),
'after' => '</div>',
) );
?>
</div>
</div>
</main>
<?php
endwhile;
}
get_footer();