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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<?php /** * The main template file * * 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. * E.g., it puts together the home page when no home.php file exists. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package fitness park */ get_header();
/** * Enable Front Page */ do_action( 'fitness_park_enable_front_page' );
$enable_front_page = get_theme_mod( 'fitness_park_front_page' ,false);
if ($enable_front_page == 1):
/** * Hook - fitness_park_action_banner_slider * * @hooked fitness_park_banner_slider - 10 */
do_action('fitness_park_action_banner_slider');
/** * Hook - fitness_park_action_about_us * * @hooked fitness_park_about_us - 20 */
do_action('fitness_park_action_about_us');
/** * Hook - fitness_park_action_call_to_action * * @hooked fitness_park_call_to_action - 30 */ do_action('fitness_park_test');
/** * Hook - fitness_park_action_gallery * * @hooked fitness_park_gallery - 80 */
do_action('fitness_park_action_blog_posts');
/** * Hook - fitness_park_action_gallery * * @hooked fitness_park_gallery - 60 */
do_action('fitness_park_action_call_to_action');
/** * Hook - fitness_park_action_services * * @hooked fitness_park_services - 40 */ do_action('fitness_park_action_services');
/** * Hook - fitness_park_action_appointment * * @hooked fitness_park_appointment - 50 */
do_action('fitness_park_action_appointment');
/** * Hook - fitness_park_action_blog_posts * * @hooked fitness_park_blog_posts - 55 */
do_action('fitness_park_action_gallery');
/** * Hook - fitness_park_action_testimonials * * @hooked fitness_park_testimonials - 70 */
do_action('fitness_park_action_testimonials'); endif;
get_footer();
|