@@ -11,11 +11,11 @@ discard block |
||
11 | 11 | * @param string $post_id |
12 | 12 | * @return boolean |
13 | 13 | */ |
14 | -function lsx_health_plan_has_warmup( $post_id = '' ) { |
|
15 | - if ( '' === $post_id ) { |
|
14 | +function lsx_health_plan_has_warmup($post_id = '') { |
|
15 | + if ('' === $post_id) { |
|
16 | 16 | $post_id = get_the_ID(); |
17 | 17 | } |
18 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'plan_warmup' ); |
|
18 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'plan_warmup'); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -24,14 +24,14 @@ discard block |
||
24 | 24 | * @param string $post_id |
25 | 25 | * @return boolean |
26 | 26 | */ |
27 | -function lsx_health_plan_has_workout( $post_id = '' ) { |
|
28 | - if ( ! post_type_exists( 'workout' ) ) { |
|
27 | +function lsx_health_plan_has_workout($post_id = '') { |
|
28 | + if ( ! post_type_exists('workout')) { |
|
29 | 29 | return false; |
30 | 30 | } |
31 | - if ( '' === $post_id ) { |
|
31 | + if ('' === $post_id) { |
|
32 | 32 | $post_id = get_the_ID(); |
33 | 33 | } |
34 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' ); |
|
34 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_workouts'); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -40,14 +40,14 @@ discard block |
||
40 | 40 | * @param string $post_id |
41 | 41 | * @return boolean |
42 | 42 | */ |
43 | -function lsx_health_plan_has_meal( $post_id = '' ) { |
|
44 | - if ( ! post_type_exists( 'meal' ) ) { |
|
43 | +function lsx_health_plan_has_meal($post_id = '') { |
|
44 | + if ( ! post_type_exists('meal')) { |
|
45 | 45 | return false; |
46 | 46 | } |
47 | - if ( '' === $post_id ) { |
|
47 | + if ('' === $post_id) { |
|
48 | 48 | $post_id = get_the_ID(); |
49 | 49 | } |
50 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' ); |
|
50 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_meals'); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
@@ -56,14 +56,14 @@ discard block |
||
56 | 56 | * @param string $post_id |
57 | 57 | * @return boolean |
58 | 58 | */ |
59 | -function lsx_health_plan_has_recipe( $post_id = '' ) { |
|
60 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
59 | +function lsx_health_plan_has_recipe($post_id = '') { |
|
60 | + if ( ! post_type_exists('recipe')) { |
|
61 | 61 | return false; |
62 | 62 | } |
63 | - if ( '' === $post_id ) { |
|
63 | + if ('' === $post_id) { |
|
64 | 64 | $post_id = get_the_ID(); |
65 | 65 | } |
66 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' ); |
|
66 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_recipes'); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -72,13 +72,13 @@ discard block |
||
72 | 72 | * @param string $post_id |
73 | 73 | * @return boolean |
74 | 74 | */ |
75 | -function lsx_health_plan_has_downloads( $post_id = '' ) { |
|
75 | +function lsx_health_plan_has_downloads($post_id = '') { |
|
76 | 76 | $has_downloads = false; |
77 | - if ( '' === $post_id ) { |
|
77 | + if ('' === $post_id) { |
|
78 | 78 | $post_id = get_the_ID(); |
79 | 79 | } |
80 | - $downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id ); |
|
81 | - if ( ! empty( $downloads ) ) { |
|
80 | + $downloads = \lsx_health_plan\functions\get_downloads('all', $post_id); |
|
81 | + if ( ! empty($downloads)) { |
|
82 | 82 | $has_downloads = true; |
83 | 83 | } |
84 | 84 | return $has_downloads; |
@@ -90,14 +90,14 @@ discard block |
||
90 | 90 | * @param string $post_id |
91 | 91 | * @return boolean |
92 | 92 | */ |
93 | -function lsx_health_plan_has_tip( $post_id = '' ) { |
|
94 | - if ( ! post_type_exists( 'tip' ) ) { |
|
93 | +function lsx_health_plan_has_tip($post_id = '') { |
|
94 | + if ( ! post_type_exists('tip')) { |
|
95 | 95 | return false; |
96 | 96 | } |
97 | - if ( '' === $post_id ) { |
|
97 | + if ('' === $post_id) { |
|
98 | 98 | $post_id = get_the_ID(); |
99 | 99 | } |
100 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' ); |
|
100 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_tips'); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -106,14 +106,14 @@ discard block |
||
106 | 106 | * @param string $post_id |
107 | 107 | * @return boolean |
108 | 108 | */ |
109 | -function lsx_health_plan_has_video( $post_id = '' ) { |
|
110 | - if ( ! post_type_exists( 'video' ) ) { |
|
109 | +function lsx_health_plan_has_video($post_id = '') { |
|
110 | + if ( ! post_type_exists('video')) { |
|
111 | 111 | return false; |
112 | 112 | } |
113 | - if ( '' === $post_id ) { |
|
113 | + if ('' === $post_id) { |
|
114 | 114 | $post_id = get_the_ID(); |
115 | 115 | } |
116 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' ); |
|
116 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_videos'); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -123,11 +123,11 @@ discard block |
||
123 | 123 | */ |
124 | 124 | function lsx_health_plan_user_has_purchase() { |
125 | 125 | $valid_order = false; |
126 | - $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
126 | + $product_id = \lsx_health_plan\functions\get_option('membership_product', false); |
|
127 | 127 | |
128 | - if ( is_user_logged_in() && false !== $product_id ) { |
|
128 | + if (is_user_logged_in() && false !== $product_id) { |
|
129 | 129 | $current_user = wp_get_current_user(); |
130 | - if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) { |
|
130 | + if (wc_customer_bought_product($current_user->user_email, $current_user->ID, $product_id)) { |
|
131 | 131 | $valid_order = true; |
132 | 132 | } |
133 | 133 | } |
@@ -140,15 +140,15 @@ discard block |
||
140 | 140 | * @param string $post_id |
141 | 141 | * @return boolean |
142 | 142 | */ |
143 | -function lsx_health_plan_is_current_tab( $needle = '' ) { |
|
143 | +function lsx_health_plan_is_current_tab($needle = '') { |
|
144 | 144 | $is_tab = false; |
145 | - $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
146 | - if ( false === $plan_slug ) { |
|
145 | + $plan_slug = \lsx_health_plan\functions\get_option('my_plan_slug', false); |
|
146 | + if (false === $plan_slug) { |
|
147 | 147 | $plan_slug = 'my-plan'; |
148 | 148 | } |
149 | - if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) { |
|
150 | - $endpoint = get_query_var( 'endpoint' ); |
|
151 | - if ( false !== $endpoint && $needle === $endpoint ) { |
|
149 | + if (is_singular('plan') || is_page($plan_slug)) { |
|
150 | + $endpoint = get_query_var('endpoint'); |
|
151 | + if (false !== $endpoint && $needle === $endpoint) { |
|
152 | 152 | $is_tab = true; |
153 | 153 | } |
154 | 154 | } |
@@ -161,14 +161,14 @@ discard block |
||
161 | 161 | * @param string $post_id |
162 | 162 | * @return boolean |
163 | 163 | */ |
164 | -function lsx_health_plan_is_day_complete( $post_id = '', $section_key = '' ) { |
|
164 | +function lsx_health_plan_is_day_complete($post_id = '', $section_key = '') { |
|
165 | 165 | $is_complete = false; |
166 | - if ( '' === $post_id ) { |
|
166 | + if ('' === $post_id) { |
|
167 | 167 | $post_id = get_the_ID(); |
168 | 168 | } |
169 | - $key = \lsx_health_plan\functions\plan\generate_section_id( $section_key ); |
|
170 | - $is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true ); |
|
171 | - if ( false !== $is_day_complete && '' !== $is_day_complete ) { |
|
169 | + $key = \lsx_health_plan\functions\plan\generate_section_id($section_key); |
|
170 | + $is_day_complete = get_user_meta(get_current_user_id(), 'day_' . $key . '_complete', true); |
|
171 | + if (false !== $is_day_complete && '' !== $is_day_complete) { |
|
172 | 172 | $is_complete = true; |
173 | 173 | } |
174 | 174 | |
@@ -186,11 +186,11 @@ discard block |
||
186 | 186 | * @param string $week The week name 'week-1'. |
187 | 187 | * @return boolean |
188 | 188 | */ |
189 | -function lsx_health_plan_week_has_downloads( $week = '' ) { |
|
189 | +function lsx_health_plan_week_has_downloads($week = '') { |
|
190 | 190 | $has_downloads = false; |
191 | - if ( '' !== $week ) { |
|
192 | - $downloads = \lsx_health_plan\functions\get_weekly_downloads( $week ); |
|
193 | - if ( ! empty( $downloads ) ) { |
|
191 | + if ('' !== $week) { |
|
192 | + $downloads = \lsx_health_plan\functions\get_weekly_downloads($week); |
|
193 | + if ( ! empty($downloads)) { |
|
194 | 194 | $has_downloads = true; |
195 | 195 | } |
196 | 196 | } |
@@ -203,15 +203,15 @@ discard block |
||
203 | 203 | * @param string $post_id |
204 | 204 | * @return boolean |
205 | 205 | */ |
206 | -function lsx_health_plan_has_tips( $post_id = '' ) { |
|
206 | +function lsx_health_plan_has_tips($post_id = '') { |
|
207 | 207 | $has_tips = false; |
208 | - if ( '' === $post_id ) { |
|
208 | + if ('' === $post_id) { |
|
209 | 209 | $post_id = get_the_ID(); |
210 | 210 | } |
211 | - $post_type = get_post_type( $post_id ); |
|
212 | - $connected_tips = get_post_meta( get_the_ID(), $post_type . '_connected_tips', true ); |
|
213 | - $connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips ); |
|
214 | - if ( ! empty( $connected_tips ) ) { |
|
211 | + $post_type = get_post_type($post_id); |
|
212 | + $connected_tips = get_post_meta(get_the_ID(), $post_type . '_connected_tips', true); |
|
213 | + $connected_tips = \lsx_health_plan\functions\check_posts_exist($connected_tips); |
|
214 | + if ( ! empty($connected_tips)) { |
|
215 | 215 | $has_tips = true; |
216 | 216 | } |
217 | 217 | return $has_tips; |
@@ -12,10 +12,10 @@ discard block |
||
12 | 12 | * @return boolean |
13 | 13 | */ |
14 | 14 | function lsx_health_plan_has_warmup( $post_id = '' ) { |
15 | - if ( '' === $post_id ) { |
|
16 | - $post_id = get_the_ID(); |
|
17 | - } |
|
18 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'plan_warmup' ); |
|
15 | + if ( '' === $post_id ) { |
|
16 | + $post_id = get_the_ID(); |
|
17 | + } |
|
18 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'plan_warmup' ); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -25,13 +25,13 @@ discard block |
||
25 | 25 | * @return boolean |
26 | 26 | */ |
27 | 27 | function lsx_health_plan_has_workout( $post_id = '' ) { |
28 | - if ( ! post_type_exists( 'workout' ) ) { |
|
29 | - return false; |
|
30 | - } |
|
31 | - if ( '' === $post_id ) { |
|
32 | - $post_id = get_the_ID(); |
|
33 | - } |
|
34 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' ); |
|
28 | + if ( ! post_type_exists( 'workout' ) ) { |
|
29 | + return false; |
|
30 | + } |
|
31 | + if ( '' === $post_id ) { |
|
32 | + $post_id = get_the_ID(); |
|
33 | + } |
|
34 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' ); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -41,14 +41,14 @@ discard block |
||
41 | 41 | * @return boolean |
42 | 42 | */ |
43 | 43 | function lsx_health_plan_has_meal( $post_id = '' ) { |
44 | - if ( ! post_type_exists( 'meal' ) ) { |
|
45 | - return false; |
|
46 | - } |
|
47 | - if ( '' === $post_id ) { |
|
48 | - $post_id = get_the_ID(); |
|
49 | - } |
|
50 | - |
|
51 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' ); |
|
44 | + if ( ! post_type_exists( 'meal' ) ) { |
|
45 | + return false; |
|
46 | + } |
|
47 | + if ( '' === $post_id ) { |
|
48 | + $post_id = get_the_ID(); |
|
49 | + } |
|
50 | + |
|
51 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' ); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -58,13 +58,13 @@ discard block |
||
58 | 58 | * @return boolean |
59 | 59 | */ |
60 | 60 | function lsx_health_plan_has_recipe( $post_id = '' ) { |
61 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
62 | - return false; |
|
63 | - } |
|
64 | - if ( '' === $post_id ) { |
|
65 | - $post_id = get_the_ID(); |
|
66 | - } |
|
67 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' ); |
|
61 | + if ( ! post_type_exists( 'recipe' ) ) { |
|
62 | + return false; |
|
63 | + } |
|
64 | + if ( '' === $post_id ) { |
|
65 | + $post_id = get_the_ID(); |
|
66 | + } |
|
67 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' ); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -74,15 +74,15 @@ discard block |
||
74 | 74 | * @return boolean |
75 | 75 | */ |
76 | 76 | function lsx_health_plan_has_downloads( $post_id = '' ) { |
77 | - $has_downloads = false; |
|
78 | - if ( '' === $post_id ) { |
|
79 | - $post_id = get_the_ID(); |
|
80 | - } |
|
81 | - $downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id ); |
|
82 | - if ( ! empty( $downloads ) ) { |
|
83 | - $has_downloads = true; |
|
84 | - } |
|
85 | - return $has_downloads; |
|
77 | + $has_downloads = false; |
|
78 | + if ( '' === $post_id ) { |
|
79 | + $post_id = get_the_ID(); |
|
80 | + } |
|
81 | + $downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id ); |
|
82 | + if ( ! empty( $downloads ) ) { |
|
83 | + $has_downloads = true; |
|
84 | + } |
|
85 | + return $has_downloads; |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
@@ -92,13 +92,13 @@ discard block |
||
92 | 92 | * @return boolean |
93 | 93 | */ |
94 | 94 | function lsx_health_plan_has_tip( $post_id = '' ) { |
95 | - if ( ! post_type_exists( 'tip' ) ) { |
|
96 | - return false; |
|
97 | - } |
|
98 | - if ( '' === $post_id ) { |
|
99 | - $post_id = get_the_ID(); |
|
100 | - } |
|
101 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' ); |
|
95 | + if ( ! post_type_exists( 'tip' ) ) { |
|
96 | + return false; |
|
97 | + } |
|
98 | + if ( '' === $post_id ) { |
|
99 | + $post_id = get_the_ID(); |
|
100 | + } |
|
101 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' ); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -108,13 +108,13 @@ discard block |
||
108 | 108 | * @return boolean |
109 | 109 | */ |
110 | 110 | function lsx_health_plan_has_video( $post_id = '' ) { |
111 | - if ( ! post_type_exists( 'video' ) ) { |
|
112 | - return false; |
|
113 | - } |
|
114 | - if ( '' === $post_id ) { |
|
115 | - $post_id = get_the_ID(); |
|
116 | - } |
|
117 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' ); |
|
111 | + if ( ! post_type_exists( 'video' ) ) { |
|
112 | + return false; |
|
113 | + } |
|
114 | + if ( '' === $post_id ) { |
|
115 | + $post_id = get_the_ID(); |
|
116 | + } |
|
117 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' ); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -123,16 +123,16 @@ discard block |
||
123 | 123 | * @return boolean |
124 | 124 | */ |
125 | 125 | function lsx_health_plan_user_has_purchase() { |
126 | - $valid_order = false; |
|
127 | - $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
128 | - |
|
129 | - if ( is_user_logged_in() && false !== $product_id ) { |
|
130 | - $current_user = wp_get_current_user(); |
|
131 | - if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) { |
|
132 | - $valid_order = true; |
|
133 | - } |
|
134 | - } |
|
135 | - return $valid_order; |
|
126 | + $valid_order = false; |
|
127 | + $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
128 | + |
|
129 | + if ( is_user_logged_in() && false !== $product_id ) { |
|
130 | + $current_user = wp_get_current_user(); |
|
131 | + if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) { |
|
132 | + $valid_order = true; |
|
133 | + } |
|
134 | + } |
|
135 | + return $valid_order; |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
@@ -142,18 +142,18 @@ discard block |
||
142 | 142 | * @return boolean |
143 | 143 | */ |
144 | 144 | function lsx_health_plan_is_current_tab( $needle = '' ) { |
145 | - $is_tab = false; |
|
146 | - $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
147 | - if ( false === $plan_slug ) { |
|
148 | - $plan_slug = 'my-plan'; |
|
149 | - } |
|
150 | - if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) { |
|
151 | - $endpoint = get_query_var( 'endpoint' ); |
|
152 | - if ( false !== $endpoint && $needle === $endpoint ) { |
|
153 | - $is_tab = true; |
|
154 | - } |
|
155 | - } |
|
156 | - return $is_tab; |
|
145 | + $is_tab = false; |
|
146 | + $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
147 | + if ( false === $plan_slug ) { |
|
148 | + $plan_slug = 'my-plan'; |
|
149 | + } |
|
150 | + if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) { |
|
151 | + $endpoint = get_query_var( 'endpoint' ); |
|
152 | + if ( false !== $endpoint && $needle === $endpoint ) { |
|
153 | + $is_tab = true; |
|
154 | + } |
|
155 | + } |
|
156 | + return $is_tab; |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
@@ -163,22 +163,22 @@ discard block |
||
163 | 163 | * @return boolean |
164 | 164 | */ |
165 | 165 | function lsx_health_plan_is_day_complete( $post_id = '', $section_key = '' ) { |
166 | - $is_complete = false; |
|
167 | - if ( '' === $post_id ) { |
|
168 | - $post_id = get_the_ID(); |
|
169 | - } |
|
170 | - $key = \lsx_health_plan\functions\plan\generate_section_id( $section_key ); |
|
171 | - $is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true ); |
|
172 | - if ( false !== $is_day_complete && '' !== $is_day_complete ) { |
|
173 | - $is_complete = true; |
|
174 | - } |
|
175 | - |
|
176 | - return $is_complete; |
|
166 | + $is_complete = false; |
|
167 | + if ( '' === $post_id ) { |
|
168 | + $post_id = get_the_ID(); |
|
169 | + } |
|
170 | + $key = \lsx_health_plan\functions\plan\generate_section_id( $section_key ); |
|
171 | + $is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true ); |
|
172 | + if ( false !== $is_day_complete && '' !== $is_day_complete ) { |
|
173 | + $is_complete = true; |
|
174 | + } |
|
175 | + |
|
176 | + return $is_complete; |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | function lsx_health_plan_is_plan_complete() { |
180 | - $complete = false; |
|
181 | - return $complete; |
|
180 | + $complete = false; |
|
181 | + return $complete; |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
@@ -188,14 +188,14 @@ discard block |
||
188 | 188 | * @return boolean |
189 | 189 | */ |
190 | 190 | function lsx_health_plan_week_has_downloads( $week = '' ) { |
191 | - $has_downloads = false; |
|
192 | - if ( '' !== $week ) { |
|
193 | - $downloads = \lsx_health_plan\functions\get_weekly_downloads( $week ); |
|
194 | - if ( ! empty( $downloads ) ) { |
|
195 | - $has_downloads = true; |
|
196 | - } |
|
197 | - } |
|
198 | - return $has_downloads; |
|
191 | + $has_downloads = false; |
|
192 | + if ( '' !== $week ) { |
|
193 | + $downloads = \lsx_health_plan\functions\get_weekly_downloads( $week ); |
|
194 | + if ( ! empty( $downloads ) ) { |
|
195 | + $has_downloads = true; |
|
196 | + } |
|
197 | + } |
|
198 | + return $has_downloads; |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | /** |
@@ -205,15 +205,15 @@ discard block |
||
205 | 205 | * @return boolean |
206 | 206 | */ |
207 | 207 | function lsx_health_plan_has_tips( $post_id = '' ) { |
208 | - $has_tips = false; |
|
209 | - if ( '' === $post_id ) { |
|
210 | - $post_id = get_the_ID(); |
|
211 | - } |
|
212 | - $post_type = get_post_type( $post_id ); |
|
213 | - $connected_tips = get_post_meta( get_the_ID(), $post_type . '_connected_tips', true ); |
|
214 | - $connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips ); |
|
215 | - if ( ! empty( $connected_tips ) ) { |
|
216 | - $has_tips = true; |
|
217 | - } |
|
218 | - return $has_tips; |
|
208 | + $has_tips = false; |
|
209 | + if ( '' === $post_id ) { |
|
210 | + $post_id = get_the_ID(); |
|
211 | + } |
|
212 | + $post_type = get_post_type( $post_id ); |
|
213 | + $connected_tips = get_post_meta( get_the_ID(), $post_type . '_connected_tips', true ); |
|
214 | + $connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips ); |
|
215 | + if ( ! empty( $connected_tips ) ) { |
|
216 | + $has_tips = true; |
|
217 | + } |
|
218 | + return $has_tips; |
|
219 | 219 | } |
@@ -11,25 +11,25 @@ discard block |
||
11 | 11 | * @return void |
12 | 12 | */ |
13 | 13 | function lsx_health_plan_warmup_box() { |
14 | - ?> |
|
14 | + ?> |
|
15 | 15 | <div class="col-md-4" > |
16 | 16 | <div class="lsx-health-plan-box"> |
17 | 17 | <h3 class="title warm-up-title title-lined"><?php esc_html_e( 'Your Warm-up', 'lsx-health-plan' ); ?><?php lsx_get_svg_icon( 'warm.svg' ); ?></h3> |
18 | 18 | <div class="spacer"></div> |
19 | 19 | <?php |
20 | - $intro_text = \lsx_health_plan\functions\get_option( 'warmup_intro', false ); |
|
21 | - if ( false !== $intro_text ) { |
|
22 | - ?> |
|
20 | + $intro_text = \lsx_health_plan\functions\get_option( 'warmup_intro', false ); |
|
21 | + if ( false !== $intro_text ) { |
|
22 | + ?> |
|
23 | 23 | <div class="excerpt"> |
24 | 24 | <p><?php echo wp_kses_post( $intro_text ); ?></p> |
25 | 25 | </div> |
26 | 26 | <?php |
27 | - } |
|
28 | - $warm_up = \lsx_health_plan\functions\get_option( 'endpoint_warm_up', false ); |
|
29 | - if ( false === $warm_up ) { |
|
30 | - $warm_up = 'warm-up'; |
|
31 | - } |
|
32 | - ?> |
|
27 | + } |
|
28 | + $warm_up = \lsx_health_plan\functions\get_option( 'endpoint_warm_up', false ); |
|
29 | + if ( false === $warm_up ) { |
|
30 | + $warm_up = 'warm-up'; |
|
31 | + } |
|
32 | + ?> |
|
33 | 33 | <a href="<?php the_permalink(); ?><?php echo esc_attr( $warm_up ); ?>/" class="btn"><?php esc_html_e( 'Start your warm-up', 'lsx-health-plan' ); ?></a> |
34 | 34 | </div> |
35 | 35 | </div> |
@@ -42,28 +42,28 @@ discard block |
||
42 | 42 | * @return void |
43 | 43 | */ |
44 | 44 | function lsx_health_plan_workout_box() { |
45 | - if ( ! post_type_exists( 'workout' ) ) { |
|
46 | - return; |
|
47 | - } |
|
48 | - ?> |
|
45 | + if ( ! post_type_exists( 'workout' ) ) { |
|
46 | + return; |
|
47 | + } |
|
48 | + ?> |
|
49 | 49 | <div class="col-md-4" > |
50 | 50 | <div class="lsx-health-plan-box"> |
51 | 51 | <h3 class="title work-out-title title-lined"><?php esc_html_e( 'Your Workout', 'lsx-health-plan' ); ?><?php lsx_get_svg_icon( 'work.svg' ); ?></h3> |
52 | 52 | <div class="spacer"></div> |
53 | 53 | <?php |
54 | - $intro_text = \lsx_health_plan\functions\get_option( 'workout_intro', false ); |
|
55 | - if ( false !== $intro_text ) { |
|
56 | - ?> |
|
54 | + $intro_text = \lsx_health_plan\functions\get_option( 'workout_intro', false ); |
|
55 | + if ( false !== $intro_text ) { |
|
56 | + ?> |
|
57 | 57 | <div class="excerpt"> |
58 | 58 | <p><?php echo wp_kses_post( $intro_text ); ?></p> |
59 | 59 | </div> |
60 | 60 | <?php |
61 | - } |
|
62 | - $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', false ); |
|
63 | - if ( false === $workout ) { |
|
64 | - $workout = 'workout'; |
|
65 | - } |
|
66 | - ?> |
|
61 | + } |
|
62 | + $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', false ); |
|
63 | + if ( false === $workout ) { |
|
64 | + $workout = 'workout'; |
|
65 | + } |
|
66 | + ?> |
|
67 | 67 | <a href="<?php the_permalink(); ?><?php echo esc_attr( $workout ); ?>/" class="btn"><?php esc_html_e( 'Start your workout', 'lsx-health-plan' ); ?></a> |
68 | 68 | </div> |
69 | 69 | </div> |
@@ -76,28 +76,28 @@ discard block |
||
76 | 76 | * @return void |
77 | 77 | */ |
78 | 78 | function lsx_health_plan_meal_box() { |
79 | - if ( ! post_type_exists( 'meal' ) ) { |
|
80 | - return; |
|
81 | - } |
|
82 | - ?> |
|
79 | + if ( ! post_type_exists( 'meal' ) ) { |
|
80 | + return; |
|
81 | + } |
|
82 | + ?> |
|
83 | 83 | <div class="col-md-4" > |
84 | 84 | <div class="lsx-health-plan-box"> |
85 | 85 | <h3 class="title meal-plan-title title-lined"><?php esc_html_e( 'Your Meal Plan', 'lsx-health-plan' ); ?><?php lsx_get_svg_icon( 'meal.svg' ); ?></h3> |
86 | 86 | <div class="spacer"></div> |
87 | 87 | <?php |
88 | - $intro_text = \lsx_health_plan\functions\get_option( 'meal_plan_intro', false ); |
|
89 | - if ( false !== $intro_text ) { |
|
90 | - ?> |
|
88 | + $intro_text = \lsx_health_plan\functions\get_option( 'meal_plan_intro', false ); |
|
89 | + if ( false !== $intro_text ) { |
|
90 | + ?> |
|
91 | 91 | <div class="excerpt"> |
92 | 92 | <p><?php echo wp_kses_post( $intro_text ); ?></p> |
93 | 93 | </div> |
94 | 94 | <?php |
95 | - } |
|
96 | - $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', false ); |
|
97 | - if ( false === $meal ) { |
|
98 | - $meal = 'meal'; |
|
99 | - } |
|
100 | - ?> |
|
95 | + } |
|
96 | + $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', false ); |
|
97 | + if ( false === $meal ) { |
|
98 | + $meal = 'meal'; |
|
99 | + } |
|
100 | + ?> |
|
101 | 101 | <a href="<?php the_permalink(); ?><?php echo esc_attr( $meal ); ?>/" class="btn"><?php esc_html_e( 'View your meal plan', 'lsx-health-plan' ); ?></a> |
102 | 102 | </div> |
103 | 103 | </div> |
@@ -110,28 +110,28 @@ discard block |
||
110 | 110 | * @return void |
111 | 111 | */ |
112 | 112 | function lsx_health_plan_recipe_box() { |
113 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
114 | - return; |
|
115 | - } |
|
116 | - ?> |
|
113 | + if ( ! post_type_exists( 'recipe' ) ) { |
|
114 | + return; |
|
115 | + } |
|
116 | + ?> |
|
117 | 117 | <div class="col-md-4" > |
118 | 118 | <div class="lsx-health-plan-box"> |
119 | 119 | <h3 class="title recipes-title title-lined"><?php esc_html_e( 'Recipes', 'lsx-health-plan' ); ?><?php lsx_get_svg_icon( 'recipes.svg' ); ?></h3> |
120 | 120 | <div class="spacer"></div> |
121 | 121 | <?php |
122 | - $intro_text = \lsx_health_plan\functions\get_option( 'recipes_intro', false ); |
|
123 | - if ( false !== $intro_text ) { |
|
124 | - ?> |
|
122 | + $intro_text = \lsx_health_plan\functions\get_option( 'recipes_intro', false ); |
|
123 | + if ( false !== $intro_text ) { |
|
124 | + ?> |
|
125 | 125 | <div class="excerpt"> |
126 | 126 | <p><?php echo wp_kses_post( $intro_text ); ?></p> |
127 | 127 | </div> |
128 | 128 | <?php |
129 | - } |
|
130 | - $recipes = \lsx_health_plan\functions\get_option( 'endpoint_recipe', false ); |
|
131 | - if ( false === $recipes ) { |
|
132 | - $recipes = 'recipes'; |
|
133 | - } |
|
134 | - ?> |
|
129 | + } |
|
130 | + $recipes = \lsx_health_plan\functions\get_option( 'endpoint_recipe', false ); |
|
131 | + if ( false === $recipes ) { |
|
132 | + $recipes = 'recipes'; |
|
133 | + } |
|
134 | + ?> |
|
135 | 135 | <a href="<?php the_permalink(); ?><?php echo esc_attr( $recipes ); ?>/" class="btn"><?php esc_html_e( 'View all recipes', 'lsx-health-plan' ); ?></a> |
136 | 136 | </div> |
137 | 137 | </div> |
@@ -144,8 +144,8 @@ discard block |
||
144 | 144 | * @return void |
145 | 145 | */ |
146 | 146 | function lsx_health_plan_downloads_box() { |
147 | - global $current_user; |
|
148 | - ?> |
|
147 | + global $current_user; |
|
148 | + ?> |
|
149 | 149 | <div class="col-md-4 day-download-box" > |
150 | 150 | <div class="lsx-health-plan-box"> |
151 | 151 | <h3 class="title downloads-title title-lined"><?php esc_html_e( 'Downloads', 'lsx-health-plan' ); ?><?php lsx_get_svg_icon( 'download.svg' ); ?></h3> |
@@ -153,13 +153,13 @@ discard block |
||
153 | 153 | <div class="download-list"> |
154 | 154 | <ul> |
155 | 155 | <?php |
156 | - $downloads = \lsx_health_plan\functions\get_downloads(); |
|
157 | - if ( ! empty( $downloads ) ) { |
|
158 | - foreach ( $downloads as $download ) { |
|
159 | - echo wp_kses_post( '<li><a href=""><i class="fa fa-file-pdf"></i>' . do_shortcode( '[download id="' . $download . '"]' ) . '</a></li>' ); |
|
160 | - } |
|
161 | - } |
|
162 | - ?> |
|
156 | + $downloads = \lsx_health_plan\functions\get_downloads(); |
|
157 | + if ( ! empty( $downloads ) ) { |
|
158 | + foreach ( $downloads as $download ) { |
|
159 | + echo wp_kses_post( '<li><a href=""><i class="fa fa-file-pdf"></i>' . do_shortcode( '[download id="' . $download . '"]' ) . '</a></li>' ); |
|
160 | + } |
|
161 | + } |
|
162 | + ?> |
|
163 | 163 | </ul> |
164 | 164 | </div> |
165 | 165 | </div> |
@@ -174,15 +174,15 @@ discard block |
||
174 | 174 | * @return void |
175 | 175 | */ |
176 | 176 | function lsx_health_plan_nav_class( $tab = '' ) { |
177 | - $nav_classes = array(); |
|
178 | - if ( function_exists( 'is_wc_endpoint_url' ) && 'edit-account' === $tab && is_wc_endpoint_url( 'edit-account' ) ) { |
|
179 | - $nav_classes[] = 'active'; |
|
180 | - } elseif ( lsx_health_plan_is_current_tab( $tab ) ) { |
|
181 | - $nav_classes[] = 'active'; |
|
182 | - } |
|
183 | - if ( ! empty( $nav_classes ) ) { |
|
184 | - echo wp_kses_post( implode( ' ', $nav_classes ) ); |
|
185 | - } |
|
177 | + $nav_classes = array(); |
|
178 | + if ( function_exists( 'is_wc_endpoint_url' ) && 'edit-account' === $tab && is_wc_endpoint_url( 'edit-account' ) ) { |
|
179 | + $nav_classes[] = 'active'; |
|
180 | + } elseif ( lsx_health_plan_is_current_tab( $tab ) ) { |
|
181 | + $nav_classes[] = 'active'; |
|
182 | + } |
|
183 | + if ( ! empty( $nav_classes ) ) { |
|
184 | + echo wp_kses_post( implode( ' ', $nav_classes ) ); |
|
185 | + } |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | /** |
@@ -191,22 +191,22 @@ discard block |
||
191 | 191 | * @return void |
192 | 192 | */ |
193 | 193 | function lsx_health_plan_my_profile_tabs() { |
194 | - ?> |
|
194 | + ?> |
|
195 | 195 | <div id="account-nav"> |
196 | 196 | <ul class="nav nav-pills"> |
197 | 197 | <li class=" |
198 | 198 | <?php |
199 | - if ( ( function_exists( 'is_wc_endpoint_url' ) && ! is_wc_endpoint_url( 'edit-account' ) ) || ! function_exists( 'is_wc_endpoint_url' ) ) { |
|
200 | - echo esc_attr( 'active' ); |
|
201 | - } |
|
202 | - ?> |
|
199 | + if ( ( function_exists( 'is_wc_endpoint_url' ) && ! is_wc_endpoint_url( 'edit-account' ) ) || ! function_exists( 'is_wc_endpoint_url' ) ) { |
|
200 | + echo esc_attr( 'active' ); |
|
201 | + } |
|
202 | + ?> |
|
203 | 203 | "><a class="my-plan-tab" href="<?php the_permalink(); ?>"><?php esc_html_e( 'My Plans', 'lsx-health-plan' ); ?></a></li> |
204 | 204 | <li class=" |
205 | 205 | <?php |
206 | - if ( function_exists( 'is_wc_endpoint_url' ) && is_wc_endpoint_url( 'edit-account' ) ) { |
|
207 | - echo esc_attr( 'active' ); |
|
208 | - } |
|
209 | - ?> |
|
206 | + if ( function_exists( 'is_wc_endpoint_url' ) && is_wc_endpoint_url( 'edit-account' ) ) { |
|
207 | + echo esc_attr( 'active' ); |
|
208 | + } |
|
209 | + ?> |
|
210 | 210 | "><a class="account-details-tab" href="<?php the_permalink(); ?>edit-account/"><?php esc_html_e( 'Account Details', 'lsx-health-plan' ); ?></a></li> |
211 | 211 | <li class=""><a class="logout-tab" href="<?php echo esc_url( wp_logout_url( get_permalink() ) ); ?>"><?php esc_html_e( 'Logout', 'lsx-health-plan' ); ?></a></li> |
212 | 212 | </ul> |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | * @return void |
221 | 221 | */ |
222 | 222 | function lsx_health_plan_my_profile_box() { |
223 | - ?> |
|
223 | + ?> |
|
224 | 224 | <div class="lsx-health-plan my-profile-block wp-block-cover alignfull"> |
225 | 225 | <div class="wp-block-cover__inner-container"> |
226 | 226 | <h2><?php esc_html_e( 'My Dashboard', 'lsx-health-plan' ); ?></h2> |
@@ -228,89 +228,89 @@ discard block |
||
228 | 228 | <div class="profile-navigation"> |
229 | 229 | <div class="profile-photo"> |
230 | 230 | <?php |
231 | - global $current_user; |
|
232 | - get_current_user(); |
|
233 | - echo get_avatar( $current_user->ID, 240 ); |
|
234 | - ?> |
|
231 | + global $current_user; |
|
232 | + get_current_user(); |
|
233 | + echo get_avatar( $current_user->ID, 240 ); |
|
234 | + ?> |
|
235 | 235 | </div> |
236 | 236 | </div> |
237 | 237 | <div class="profile-details"> |
238 | 238 | <h1 class="title-lined has-text-color"><?php echo esc_html( $current_user->display_name ); ?></h1> |
239 | 239 | <?php |
240 | - $disable_stats = \lsx_health_plan\functions\get_option( 'disable_all_stats', false ); |
|
241 | - if ( 'on' !== $disable_stats ) { |
|
240 | + $disable_stats = \lsx_health_plan\functions\get_option( 'disable_all_stats', false ); |
|
241 | + if ( 'on' !== $disable_stats ) { |
|
242 | 242 | |
243 | - $is_weight_disabled = \lsx_health_plan\functions\get_option( 'disable_weight_checkbox', false ); |
|
244 | - $is_height_disabled = \lsx_health_plan\functions\get_option( 'disable_height_checkbox', false ); |
|
245 | - $is_waist_disabled = \lsx_health_plan\functions\get_option( 'disable_waist_checkbox', false ); |
|
246 | - $is_bmi_disabled = \lsx_health_plan\functions\get_option( 'disable_bmi_checkbox', false ); |
|
243 | + $is_weight_disabled = \lsx_health_plan\functions\get_option( 'disable_weight_checkbox', false ); |
|
244 | + $is_height_disabled = \lsx_health_plan\functions\get_option( 'disable_height_checkbox', false ); |
|
245 | + $is_waist_disabled = \lsx_health_plan\functions\get_option( 'disable_waist_checkbox', false ); |
|
246 | + $is_bmi_disabled = \lsx_health_plan\functions\get_option( 'disable_bmi_checkbox', false ); |
|
247 | 247 | |
248 | - $weight = get_user_meta( get_current_user_id(), 'weight', true ); |
|
249 | - $waist = get_user_meta( get_current_user_id(), 'waist', true ); |
|
250 | - $height = get_user_meta( get_current_user_id(), 'height', true ); |
|
248 | + $weight = get_user_meta( get_current_user_id(), 'weight', true ); |
|
249 | + $waist = get_user_meta( get_current_user_id(), 'waist', true ); |
|
250 | + $height = get_user_meta( get_current_user_id(), 'height', true ); |
|
251 | 251 | |
252 | - $height_m = 0; |
|
253 | - if ( is_numeric( $height) ) { |
|
254 | - $height_m = $height / 100; |
|
255 | - } |
|
252 | + $height_m = 0; |
|
253 | + if ( is_numeric( $height) ) { |
|
254 | + $height_m = $height / 100; |
|
255 | + } |
|
256 | 256 | |
257 | - if ( 1 < $weight && 1 < $height_m ) { |
|
258 | - $bmi = $weight / ( $height_m * $height_m ); |
|
259 | - $bmi = number_format( $bmi, 1 ); |
|
260 | - } else { |
|
261 | - $bmi = __( 'Add more data', 'lsx-health-plan' ); |
|
262 | - } |
|
257 | + if ( 1 < $weight && 1 < $height_m ) { |
|
258 | + $bmi = $weight / ( $height_m * $height_m ); |
|
259 | + $bmi = number_format( $bmi, 1 ); |
|
260 | + } else { |
|
261 | + $bmi = __( 'Add more data', 'lsx-health-plan' ); |
|
262 | + } |
|
263 | 263 | |
264 | - ?> |
|
264 | + ?> |
|
265 | 265 | |
266 | 266 | <div> |
267 | 267 | <?php if ( 'on' !== $is_weight_disabled ) { ?> |
268 | 268 | <span><strong><?php esc_html_e( 'Weight:', 'lsx-health-plan' ); ?></strong> |
269 | 269 | <?php |
270 | - if ( '' !== $weight ) { |
|
271 | - echo wp_kses_post( $weight . ' kg' ); |
|
272 | - } else { |
|
273 | - echo '/'; |
|
274 | - } |
|
275 | - ?> |
|
270 | + if ( '' !== $weight ) { |
|
271 | + echo wp_kses_post( $weight . ' kg' ); |
|
272 | + } else { |
|
273 | + echo '/'; |
|
274 | + } |
|
275 | + ?> |
|
276 | 276 | </span> |
277 | 277 | <?php } |
278 | - if ( 'on' !== $is_waist_disabled ) { |
|
279 | - ?> |
|
278 | + if ( 'on' !== $is_waist_disabled ) { |
|
279 | + ?> |
|
280 | 280 | <span><strong><?php esc_html_e( 'Waist:', 'lsx-health-plan' ); ?></strong> |
281 | 281 | <?php |
282 | - if ( '' !== $waist ) { |
|
283 | - echo wp_kses_post( $waist . ' cm' ); |
|
284 | - } else { |
|
285 | - echo '/'; |
|
286 | - } |
|
287 | - ?> |
|
282 | + if ( '' !== $waist ) { |
|
283 | + echo wp_kses_post( $waist . ' cm' ); |
|
284 | + } else { |
|
285 | + echo '/'; |
|
286 | + } |
|
287 | + ?> |
|
288 | 288 | </span> |
289 | 289 | <?php } |
290 | - if ( 'on' !== $is_bmi_disabled ) { |
|
291 | - ?> |
|
290 | + if ( 'on' !== $is_bmi_disabled ) { |
|
291 | + ?> |
|
292 | 292 | <span><strong><?php esc_html_e( 'BMI:', 'lsx-health-plan' ); ?></strong> |
293 | 293 | <?php |
294 | - if ( '' !== $bmi ) { |
|
295 | - echo wp_kses_post( $bmi ); |
|
296 | - } else { |
|
297 | - echo '/'; |
|
298 | - } |
|
299 | - ?> |
|
294 | + if ( '' !== $bmi ) { |
|
295 | + echo wp_kses_post( $bmi ); |
|
296 | + } else { |
|
297 | + echo '/'; |
|
298 | + } |
|
299 | + ?> |
|
300 | 300 | </span> |
301 | 301 | <?php } ?> |
302 | 302 | </div> |
303 | 303 | <?php |
304 | - } |
|
305 | - ?> |
|
304 | + } |
|
305 | + ?> |
|
306 | 306 | <div class="edit-profile"> |
307 | 307 | <?php |
308 | - if ( function_exists( 'wc_get_page_id' ) ) { |
|
309 | - $url_id = wc_get_page_id( 'myaccount' ); |
|
310 | - } else { |
|
311 | - $url_id = ''; |
|
312 | - } |
|
313 | - ?> |
|
308 | + if ( function_exists( 'wc_get_page_id' ) ) { |
|
309 | + $url_id = wc_get_page_id( 'myaccount' ); |
|
310 | + } else { |
|
311 | + $url_id = ''; |
|
312 | + } |
|
313 | + ?> |
|
314 | 314 | <a href="<?php echo esc_url( get_permalink( $url_id ) ); ?>edit-account/"><?php esc_html_e( 'Edit', 'lsx-health-plan' ); ?></a> |
315 | 315 | </div> |
316 | 316 | </div> |
@@ -326,63 +326,63 @@ discard block |
||
326 | 326 | * @return void |
327 | 327 | */ |
328 | 328 | function lsx_health_plan_all_plans_block() { |
329 | - global $post, $product; |
|
330 | - |
|
331 | - $args = array( |
|
332 | - 'orderby' => 'menu_order', |
|
333 | - 'order' => 'ASC', |
|
334 | - 'post_type' => 'plan', |
|
335 | - 'nopagin' => true, |
|
336 | - 'post_parent' => 0, |
|
337 | - ); |
|
338 | - |
|
339 | - $product_ids = \lsx_health_plan\functions\woocommerce\get_membership_products(); |
|
340 | - if ( ! empty( $product_ids ) ) { |
|
341 | - $args['meta_query'] = array( |
|
342 | - 'relation' => 'OR', |
|
343 | - array( |
|
344 | - 'key' => '_plan_product_id', |
|
345 | - 'value' => $product_ids, |
|
346 | - 'compare' => 'IN', |
|
347 | - ), |
|
348 | - array( |
|
349 | - 'key' => '_plan_product_id', |
|
350 | - 'compare' => 'NOT EXISTS', |
|
351 | - ), |
|
352 | - ); |
|
353 | - } |
|
354 | - |
|
355 | - $the_query = new WP_Query( $args ); |
|
356 | - ?> |
|
329 | + global $post, $product; |
|
330 | + |
|
331 | + $args = array( |
|
332 | + 'orderby' => 'menu_order', |
|
333 | + 'order' => 'ASC', |
|
334 | + 'post_type' => 'plan', |
|
335 | + 'nopagin' => true, |
|
336 | + 'post_parent' => 0, |
|
337 | + ); |
|
338 | + |
|
339 | + $product_ids = \lsx_health_plan\functions\woocommerce\get_membership_products(); |
|
340 | + if ( ! empty( $product_ids ) ) { |
|
341 | + $args['meta_query'] = array( |
|
342 | + 'relation' => 'OR', |
|
343 | + array( |
|
344 | + 'key' => '_plan_product_id', |
|
345 | + 'value' => $product_ids, |
|
346 | + 'compare' => 'IN', |
|
347 | + ), |
|
348 | + array( |
|
349 | + 'key' => '_plan_product_id', |
|
350 | + 'compare' => 'NOT EXISTS', |
|
351 | + ), |
|
352 | + ); |
|
353 | + } |
|
354 | + |
|
355 | + $the_query = new WP_Query( $args ); |
|
356 | + ?> |
|
357 | 357 | <div class="all-plans-block plan-grid block-all-plans-block"> |
358 | 358 | <div class="row"> |
359 | 359 | <?php |
360 | - if ( $the_query->have_posts() ) : |
|
361 | - while ( $the_query->have_posts() ) : |
|
362 | - $the_query->the_post(); |
|
363 | - lsx_entry_before(); |
|
364 | - $completed_class = ''; |
|
365 | - $linked_product = false; |
|
366 | - $restricted = false; |
|
367 | - $product = null; |
|
368 | - if ( \lsx_health_plan\functions\woocommerce\plan_has_products() ) { |
|
369 | - $products = \lsx_health_plan\functions\woocommerce\get_plan_products(); |
|
370 | - $linked_product = wc_get_product( $products[0] ); |
|
371 | - $product = $linked_product; |
|
372 | - } |
|
373 | - if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
374 | - $restricted = wc_memberships_is_post_content_restricted( get_the_ID() ) && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
375 | - } |
|
376 | - |
|
377 | - if ( lsx_health_plan_is_plan_complete() ) { |
|
378 | - $completed_class = 'completed'; |
|
379 | - } |
|
380 | - $round_progress = ''; |
|
381 | - $completed_progress = '100'; |
|
382 | - if ( false === $restricted ) { |
|
383 | - $round_progress = round( \lsx_health_plan\functions\get_progress( get_the_ID() ), 0 ); |
|
384 | - } |
|
385 | - ?> |
|
360 | + if ( $the_query->have_posts() ) : |
|
361 | + while ( $the_query->have_posts() ) : |
|
362 | + $the_query->the_post(); |
|
363 | + lsx_entry_before(); |
|
364 | + $completed_class = ''; |
|
365 | + $linked_product = false; |
|
366 | + $restricted = false; |
|
367 | + $product = null; |
|
368 | + if ( \lsx_health_plan\functions\woocommerce\plan_has_products() ) { |
|
369 | + $products = \lsx_health_plan\functions\woocommerce\get_plan_products(); |
|
370 | + $linked_product = wc_get_product( $products[0] ); |
|
371 | + $product = $linked_product; |
|
372 | + } |
|
373 | + if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
374 | + $restricted = wc_memberships_is_post_content_restricted( get_the_ID() ) && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
375 | + } |
|
376 | + |
|
377 | + if ( lsx_health_plan_is_plan_complete() ) { |
|
378 | + $completed_class = 'completed'; |
|
379 | + } |
|
380 | + $round_progress = ''; |
|
381 | + $completed_progress = '100'; |
|
382 | + if ( false === $restricted ) { |
|
383 | + $round_progress = round( \lsx_health_plan\functions\get_progress( get_the_ID() ), 0 ); |
|
384 | + } |
|
385 | + ?> |
|
386 | 386 | <div class="col-xs-12 col-sm-6 col-md-4"> |
387 | 387 | <article class="lsx-slot lsx-hp-shadow <?php echo esc_html( 'progress-') . $round_progress; ?>"> |
388 | 388 | <div class="plan-feature-img"> |
@@ -391,45 +391,45 @@ discard block |
||
391 | 391 | <?php } ?> |
392 | 392 | <a href="<?php echo esc_url( get_permalink() ); ?>"> |
393 | 393 | <?php |
394 | - $featured_image = get_the_post_thumbnail(); |
|
395 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
396 | - the_post_thumbnail( 'lsx-thumbnail', array( |
|
397 | - 'class' => 'aligncenter', |
|
398 | - ) ); |
|
399 | - } else { |
|
400 | - ?> |
|
394 | + $featured_image = get_the_post_thumbnail(); |
|
395 | + if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
396 | + the_post_thumbnail( 'lsx-thumbnail', array( |
|
397 | + 'class' => 'aligncenter', |
|
398 | + ) ); |
|
399 | + } else { |
|
400 | + ?> |
|
401 | 401 | <img loading="lazy" class="placeholder" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
402 | 402 | <?php |
403 | - } |
|
404 | - ?> |
|
403 | + } |
|
404 | + ?> |
|
405 | 405 | </a> |
406 | 406 | </div> |
407 | 407 | <div class="content-box plan-content-box"> |
408 | 408 | <h3 class="plan id-<?php the_ID(); ?> <?php echo esc_attr( $completed_class ); ?>"><a href="<?php echo esc_url( get_permalink() ); ?>"><?php the_title(); ?></a></h3> |
409 | 409 | <?php |
410 | - echo wp_kses_post( \lsx_health_plan\functions\hp_get_plan_type_meta( $post ) ); |
|
411 | - ?> |
|
410 | + echo wp_kses_post( \lsx_health_plan\functions\hp_get_plan_type_meta( $post ) ); |
|
411 | + ?> |
|
412 | 412 | <?php |
413 | - if ( false !== $linked_product && false !== $restricted ) { |
|
414 | - echo wp_kses_post( $linked_product->get_price_html() ); |
|
415 | - } |
|
416 | - ?> |
|
413 | + if ( false !== $linked_product && false !== $restricted ) { |
|
414 | + echo wp_kses_post( $linked_product->get_price_html() ); |
|
415 | + } |
|
416 | + ?> |
|
417 | 417 | <div class="excerpt"> |
418 | 418 | <?php |
419 | - if ( ! has_excerpt() ) { |
|
420 | - $content = wp_trim_words( get_the_content(), 20 ); |
|
421 | - $content = '<p>' . $content . '</pre>'; |
|
422 | - } else { |
|
423 | - $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
424 | - } |
|
425 | - echo wp_kses_post( $content ); |
|
426 | - ?> |
|
419 | + if ( ! has_excerpt() ) { |
|
420 | + $content = wp_trim_words( get_the_content(), 20 ); |
|
421 | + $content = '<p>' . $content . '</pre>'; |
|
422 | + } else { |
|
423 | + $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
424 | + } |
|
425 | + echo wp_kses_post( $content ); |
|
426 | + ?> |
|
427 | 427 | </div> |
428 | 428 | <?php |
429 | - if ( false === $restricted ) { |
|
430 | - echo wp_kses_post( '<span class="progress"><progress class="bar" value="' . \lsx_health_plan\functions\get_progress( get_the_ID() ) . '" max="100"> ' . \lsx_health_plan\functions\get_progress( get_the_ID() ) . '% </progress><span>' . $round_progress . '%</span></span>' ); |
|
431 | - } |
|
432 | - ?> |
|
429 | + if ( false === $restricted ) { |
|
430 | + echo wp_kses_post( '<span class="progress"><progress class="bar" value="' . \lsx_health_plan\functions\get_progress( get_the_ID() ) . '" max="100"> ' . \lsx_health_plan\functions\get_progress( get_the_ID() ) . '% </progress><span>' . $round_progress . '%</span></span>' ); |
|
431 | + } |
|
432 | + ?> |
|
433 | 433 | </div> |
434 | 434 | </article> |
435 | 435 | </div> |
@@ -448,36 +448,36 @@ discard block |
||
448 | 448 | * @return void |
449 | 449 | */ |
450 | 450 | function lsx_health_plan_day_plan_block( $args = array() ) { |
451 | - $defaults = array( |
|
452 | - 'plan' => '', |
|
453 | - ); |
|
454 | - $args = wp_parse_args( $args, $defaults ); |
|
455 | - |
|
456 | - if ( isset( $args['plan'] ) && '' !== $args['plan'] && \lsx_health_plan\functions\plan\has_sections( $args['plan'] ) ) { |
|
457 | - $sections = \lsx_health_plan\functions\plan\get_sections(); |
|
458 | - ?> |
|
451 | + $defaults = array( |
|
452 | + 'plan' => '', |
|
453 | + ); |
|
454 | + $args = wp_parse_args( $args, $defaults ); |
|
455 | + |
|
456 | + if ( isset( $args['plan'] ) && '' !== $args['plan'] && \lsx_health_plan\functions\plan\has_sections( $args['plan'] ) ) { |
|
457 | + $sections = \lsx_health_plan\functions\plan\get_sections(); |
|
458 | + ?> |
|
459 | 459 | <div class="daily-plan-block day-grid"> |
460 | 460 | <?php |
461 | - foreach ( $sections as $section_key => $section_values ) { |
|
462 | - $defaults = array( |
|
463 | - 'title' => __( 'Day', 'lsx-health-plan' ) . ' ' . ( $section_key + 1 ), |
|
464 | - ); |
|
465 | - $section_args = wp_parse_args( $section_values, $defaults ); |
|
466 | - |
|
467 | - $completed_class = ''; |
|
468 | - if ( lsx_health_plan_is_day_complete() ) { |
|
469 | - $completed_class = 'completed'; |
|
470 | - } |
|
471 | - ?> |
|
461 | + foreach ( $sections as $section_key => $section_values ) { |
|
462 | + $defaults = array( |
|
463 | + 'title' => __( 'Day', 'lsx-health-plan' ) . ' ' . ( $section_key + 1 ), |
|
464 | + ); |
|
465 | + $section_args = wp_parse_args( $section_values, $defaults ); |
|
466 | + |
|
467 | + $completed_class = ''; |
|
468 | + if ( lsx_health_plan_is_day_complete() ) { |
|
469 | + $completed_class = 'completed'; |
|
470 | + } |
|
471 | + ?> |
|
472 | 472 | <a href="<?php echo esc_attr( \lsx_health_plan\functions\plan\get_permalink( $args['plan'], $section_args['title'] ) ); ?>" class="day id-<?php echo esc_attr( $section_key + 1 ); ?> <?php echo esc_attr( $completed_class ); ?>"> |
473 | 473 | <div class="plan-content"><?php echo esc_attr( $section_args['title'] ); ?></div> |
474 | 474 | </a> |
475 | 475 | <?php |
476 | - } |
|
477 | - ?> |
|
476 | + } |
|
477 | + ?> |
|
478 | 478 | </div> |
479 | 479 | <?php |
480 | - } |
|
480 | + } |
|
481 | 481 | } |
482 | 482 | |
483 | 483 | /** |
@@ -487,44 +487,44 @@ discard block |
||
487 | 487 | * @return void |
488 | 488 | */ |
489 | 489 | function lsx_health_plan_week_plan_block( $args = array() ) { |
490 | - $defaults = array( |
|
491 | - 'show_downloads' => false, |
|
492 | - 'plan' => '', |
|
493 | - ); |
|
494 | - $args = wp_parse_args( $args, $defaults ); |
|
495 | - |
|
496 | - if ( isset( $args['plan'] ) && '' !== $args['plan'] && \lsx_health_plan\functions\plan\has_sections( $args['plan'] ) ) { |
|
497 | - $groups = \lsx_health_plan\functions\plan\get_sections( true ); |
|
498 | - |
|
499 | - if ( ! empty( $groups ) ) { |
|
500 | - $counter = 1; |
|
501 | - $group_open = false; |
|
502 | - |
|
503 | - foreach ( $groups as $group_key => $sections ) { |
|
504 | - $collapse_class = ''; |
|
505 | - $group_title = \lsx_health_plan\functions\plan\get_group_title( $sections ); |
|
506 | - |
|
507 | - // Determine if the current week is complete. |
|
508 | - $day_ids = wp_list_pluck( $sections, 'title' ); |
|
509 | - if ( false === $group_open ) { |
|
510 | - if ( 1 === $counter && ! \lsx_health_plan\functions\is_week_complete( false, $day_ids, $group_title ) ) { |
|
511 | - $collapse_class = 'in'; |
|
512 | - $group_open = true; |
|
513 | - } elseif ( ! \lsx_health_plan\functions\is_week_complete( false, $day_ids, $group_title ) ) { |
|
514 | - $collapse_class = 'in'; |
|
515 | - $group_open = true; |
|
516 | - } |
|
517 | - } |
|
518 | - |
|
519 | - // Determine if there are any weekly downloads. |
|
520 | - $week_downloads_view = ''; |
|
521 | - if ( isset( $args['show_downloads'] ) && false !== $args['show_downloads'] ) { |
|
522 | - $weekly_downloads = \lsx_health_plan\functions\get_weekly_downloads( $group_key ); |
|
523 | - if ( ! empty( $weekly_downloads ) ) { |
|
524 | - $week_downloads_view = 'week-downloads-view-on'; |
|
525 | - } |
|
526 | - } |
|
527 | - ?> |
|
490 | + $defaults = array( |
|
491 | + 'show_downloads' => false, |
|
492 | + 'plan' => '', |
|
493 | + ); |
|
494 | + $args = wp_parse_args( $args, $defaults ); |
|
495 | + |
|
496 | + if ( isset( $args['plan'] ) && '' !== $args['plan'] && \lsx_health_plan\functions\plan\has_sections( $args['plan'] ) ) { |
|
497 | + $groups = \lsx_health_plan\functions\plan\get_sections( true ); |
|
498 | + |
|
499 | + if ( ! empty( $groups ) ) { |
|
500 | + $counter = 1; |
|
501 | + $group_open = false; |
|
502 | + |
|
503 | + foreach ( $groups as $group_key => $sections ) { |
|
504 | + $collapse_class = ''; |
|
505 | + $group_title = \lsx_health_plan\functions\plan\get_group_title( $sections ); |
|
506 | + |
|
507 | + // Determine if the current week is complete. |
|
508 | + $day_ids = wp_list_pluck( $sections, 'title' ); |
|
509 | + if ( false === $group_open ) { |
|
510 | + if ( 1 === $counter && ! \lsx_health_plan\functions\is_week_complete( false, $day_ids, $group_title ) ) { |
|
511 | + $collapse_class = 'in'; |
|
512 | + $group_open = true; |
|
513 | + } elseif ( ! \lsx_health_plan\functions\is_week_complete( false, $day_ids, $group_title ) ) { |
|
514 | + $collapse_class = 'in'; |
|
515 | + $group_open = true; |
|
516 | + } |
|
517 | + } |
|
518 | + |
|
519 | + // Determine if there are any weekly downloads. |
|
520 | + $week_downloads_view = ''; |
|
521 | + if ( isset( $args['show_downloads'] ) && false !== $args['show_downloads'] ) { |
|
522 | + $weekly_downloads = \lsx_health_plan\functions\get_weekly_downloads( $group_key ); |
|
523 | + if ( ! empty( $weekly_downloads ) ) { |
|
524 | + $week_downloads_view = 'week-downloads-view-on'; |
|
525 | + } |
|
526 | + } |
|
527 | + ?> |
|
528 | 528 | <div class="daily-plan-block week-grid"> |
529 | 529 | <a href="#group-<?php echo esc_attr( $group_key ); ?>" data-toggle="collapse" class="week-title"><?php echo esc_attr( $group_title ); ?></a> |
530 | 530 | <div id="group-<?php echo esc_attr( $group_key ); ?>" class="week-row collapse <?php echo esc_attr( $collapse_class ); ?>"> |
@@ -538,38 +538,38 @@ discard block |
||
538 | 538 | <div class="week-meals-recipes-box-inner"> |
539 | 539 | <?php |
540 | 540 | |
541 | - foreach ( $sections as $section_key => $section_values ) { |
|
541 | + foreach ( $sections as $section_key => $section_values ) { |
|
542 | 542 | |
543 | - $defaults = array( |
|
544 | - 'title' => __( 'Day', 'lsx-health-plan' ) . ' ' . ( $section_key + 1 ), |
|
545 | - ); |
|
546 | - $section_args = wp_parse_args( $section_values, $defaults ); |
|
543 | + $defaults = array( |
|
544 | + 'title' => __( 'Day', 'lsx-health-plan' ) . ' ' . ( $section_key + 1 ), |
|
545 | + ); |
|
546 | + $section_args = wp_parse_args( $section_values, $defaults ); |
|
547 | 547 | |
548 | - $completed_class = ''; |
|
549 | - if ( lsx_health_plan_is_day_complete( $args['plan'], $section_args['title'] ) ) { |
|
550 | - $completed_class = 'completed'; |
|
551 | - } |
|
552 | - ?> |
|
548 | + $completed_class = ''; |
|
549 | + if ( lsx_health_plan_is_day_complete( $args['plan'], $section_args['title'] ) ) { |
|
550 | + $completed_class = 'completed'; |
|
551 | + } |
|
552 | + ?> |
|
553 | 553 | <a href="<?php echo esc_attr( \lsx_health_plan\functions\plan\get_permalink( $args['plan'], $section_args['title'] ) ); ?>" class="day id-<?php echo esc_attr( $section_key + 1 ); ?> <?php echo esc_attr( $completed_class ); ?>"> |
554 | 554 | <div class="plan-content"><?php echo esc_attr( $section_args['title'] ); ?></div> |
555 | 555 | </a> |
556 | 556 | <?php |
557 | - } |
|
558 | - ?> |
|
557 | + } |
|
558 | + ?> |
|
559 | 559 | </div> |
560 | 560 | </div> |
561 | 561 | <?php |
562 | - if ( ! empty( $week_downloads_view ) ) { |
|
563 | - lsx_health_plan_weekly_downloads( $weekly_downloads ); |
|
564 | - } |
|
565 | - ?> |
|
562 | + if ( ! empty( $week_downloads_view ) ) { |
|
563 | + lsx_health_plan_weekly_downloads( $weekly_downloads ); |
|
564 | + } |
|
565 | + ?> |
|
566 | 566 | </div> |
567 | 567 | </div> |
568 | 568 | </div> |
569 | 569 | <?php |
570 | - } |
|
571 | - } |
|
572 | - } |
|
570 | + } |
|
571 | + } |
|
572 | + } |
|
573 | 573 | } |
574 | 574 | |
575 | 575 | /** |
@@ -579,22 +579,22 @@ discard block |
||
579 | 579 | * @return void |
580 | 580 | */ |
581 | 581 | function lsx_health_plan_weekly_downloads( $weekly_downloads = array() ) { |
582 | - if ( ! empty( $weekly_downloads ) ) { |
|
583 | - ?> |
|
582 | + if ( ! empty( $weekly_downloads ) ) { |
|
583 | + ?> |
|
584 | 584 | <div class="week-download-box"> |
585 | 585 | <h3 class="title"><?php lsx_get_svg_icon( 'download.svg' ); ?><?php echo esc_html_e( 'Downloads', 'lsx-health-plan' ); ?></h3> |
586 | 586 | <ul class="week-download-box-list"> |
587 | 587 | <?php |
588 | - foreach ( $weekly_downloads as $weekly_download ) { |
|
589 | - ?> |
|
588 | + foreach ( $weekly_downloads as $weekly_download ) { |
|
589 | + ?> |
|
590 | 590 | <li><?php echo wp_kses_post( do_shortcode( '[download id="' . $weekly_download . '"]' ) ); ?></li> |
591 | 591 | <?php |
592 | - } |
|
593 | - ?> |
|
592 | + } |
|
593 | + ?> |
|
594 | 594 | </ul> |
595 | 595 | </div> |
596 | 596 | <?php |
597 | - } |
|
597 | + } |
|
598 | 598 | } |
599 | 599 | |
600 | 600 | /** |
@@ -603,9 +603,9 @@ discard block |
||
603 | 603 | * @return void |
604 | 604 | */ |
605 | 605 | function lsx_health_plan_items( $args = array() ) { |
606 | - global $shortcode_args; |
|
607 | - $shortcode_args = $args; |
|
608 | - include LSX_HEALTH_PLAN_PATH . '/templates/partials/shortcode-loop.php'; |
|
606 | + global $shortcode_args; |
|
607 | + $shortcode_args = $args; |
|
608 | + include LSX_HEALTH_PLAN_PATH . '/templates/partials/shortcode-loop.php'; |
|
609 | 609 | } |
610 | 610 | |
611 | 611 | /** |
@@ -614,10 +614,10 @@ discard block |
||
614 | 614 | * @return void |
615 | 615 | */ |
616 | 616 | function lsx_health_plan_featured_video_block() { |
617 | - if ( ! post_type_exists( 'video' ) ) { |
|
618 | - return; |
|
619 | - } |
|
620 | - include LSX_HEALTH_PLAN_PATH . '/templates/featured-videos.php'; |
|
617 | + if ( ! post_type_exists( 'video' ) ) { |
|
618 | + return; |
|
619 | + } |
|
620 | + include LSX_HEALTH_PLAN_PATH . '/templates/featured-videos.php'; |
|
621 | 621 | } |
622 | 622 | |
623 | 623 | /** |
@@ -626,10 +626,10 @@ discard block |
||
626 | 626 | * @return void |
627 | 627 | */ |
628 | 628 | function lsx_health_plan_featured_recipes_block() { |
629 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
630 | - return; |
|
631 | - } |
|
632 | - include LSX_HEALTH_PLAN_PATH . '/templates/featured-recipes.php'; |
|
629 | + if ( ! post_type_exists( 'recipe' ) ) { |
|
630 | + return; |
|
631 | + } |
|
632 | + include LSX_HEALTH_PLAN_PATH . '/templates/featured-recipes.php'; |
|
633 | 633 | } |
634 | 634 | |
635 | 635 | /** |
@@ -638,7 +638,7 @@ discard block |
||
638 | 638 | * @return void |
639 | 639 | */ |
640 | 640 | function lsx_health_plan_featured_tips_block() { |
641 | - include LSX_HEALTH_PLAN_PATH . '/templates/featured-tips.php'; |
|
641 | + include LSX_HEALTH_PLAN_PATH . '/templates/featured-tips.php'; |
|
642 | 642 | } |
643 | 643 | |
644 | 644 | /** |
@@ -648,11 +648,11 @@ discard block |
||
648 | 648 | * @return void |
649 | 649 | */ |
650 | 650 | function lsx_health_plan_day_button() { |
651 | - if ( lsx_health_plan_is_day_complete() ) { |
|
652 | - lsx_health_plan_unlock_button(); |
|
653 | - } else { |
|
654 | - lsx_health_plan_complete_button(); |
|
655 | - } |
|
651 | + if ( lsx_health_plan_is_day_complete() ) { |
|
652 | + lsx_health_plan_unlock_button(); |
|
653 | + } else { |
|
654 | + lsx_health_plan_complete_button(); |
|
655 | + } |
|
656 | 656 | } |
657 | 657 | |
658 | 658 | /** |
@@ -661,7 +661,7 @@ discard block |
||
661 | 661 | * @return void |
662 | 662 | */ |
663 | 663 | function lsx_health_plan_complete_button() { |
664 | - ?> |
|
664 | + ?> |
|
665 | 665 | <div class="single-plan-inner-buttons"> |
666 | 666 | <form action="<?php the_permalink(); ?>" method="post" class="form-complete-day complete-plan-btn"> |
667 | 667 | <?php wp_nonce_field( 'complete', 'lsx-health-plan-actions' ); ?> |
@@ -679,7 +679,7 @@ discard block |
||
679 | 679 | * @return void |
680 | 680 | */ |
681 | 681 | function lsx_health_plan_unlock_button() { |
682 | - ?> |
|
682 | + ?> |
|
683 | 683 | <div class="single-plan-inner-buttons"> |
684 | 684 | <form action="<?php the_permalink(); ?>" method="post" class="form-complete-day complete-plan-btn"> |
685 | 685 | <?php wp_nonce_field( 'unlock', 'lsx-health-plan-actions' ); ?> |
@@ -698,10 +698,10 @@ discard block |
||
698 | 698 | * @return void |
699 | 699 | */ |
700 | 700 | function lsx_health_plan_single_nav() { |
701 | - $tab_template_path = apply_filters( 'lsx_health_plan_single_nav_path', LSX_HEALTH_PLAN_PATH . '/templates/single-plan-tabs.php' ); |
|
702 | - if ( '' !== $tab_template_path ) { |
|
703 | - require $tab_template_path; |
|
704 | - } |
|
701 | + $tab_template_path = apply_filters( 'lsx_health_plan_single_nav_path', LSX_HEALTH_PLAN_PATH . '/templates/single-plan-tabs.php' ); |
|
702 | + if ( '' !== $tab_template_path ) { |
|
703 | + require $tab_template_path; |
|
704 | + } |
|
705 | 705 | } |
706 | 706 | |
707 | 707 | /** |
@@ -711,32 +711,32 @@ discard block |
||
711 | 711 | * @return void |
712 | 712 | */ |
713 | 713 | function lsx_health_plan_single_tabs() { |
714 | - $endpoint = get_query_var( 'endpoint' ); |
|
715 | - switch ( $endpoint ) { |
|
716 | - case 'meal': |
|
717 | - $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-meal.php'; |
|
718 | - break; |
|
719 | - |
|
720 | - case 'recipes': |
|
721 | - $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-recipes.php'; |
|
722 | - break; |
|
723 | - |
|
724 | - case 'workout': |
|
725 | - $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-workout.php'; |
|
726 | - break; |
|
727 | - |
|
728 | - case 'warm-up': |
|
729 | - $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-warm-up.php'; |
|
730 | - break; |
|
731 | - |
|
732 | - default: |
|
733 | - $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-plan.php'; |
|
734 | - break; |
|
735 | - } |
|
736 | - $tab_template_path = apply_filters( 'lsx_health_plan_single_tab_path', $tab_template_path ); |
|
737 | - if ( '' !== $tab_template_path ) { |
|
738 | - include $tab_template_path; |
|
739 | - } |
|
714 | + $endpoint = get_query_var( 'endpoint' ); |
|
715 | + switch ( $endpoint ) { |
|
716 | + case 'meal': |
|
717 | + $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-meal.php'; |
|
718 | + break; |
|
719 | + |
|
720 | + case 'recipes': |
|
721 | + $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-recipes.php'; |
|
722 | + break; |
|
723 | + |
|
724 | + case 'workout': |
|
725 | + $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-workout.php'; |
|
726 | + break; |
|
727 | + |
|
728 | + case 'warm-up': |
|
729 | + $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-warm-up.php'; |
|
730 | + break; |
|
731 | + |
|
732 | + default: |
|
733 | + $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-plan.php'; |
|
734 | + break; |
|
735 | + } |
|
736 | + $tab_template_path = apply_filters( 'lsx_health_plan_single_tab_path', $tab_template_path ); |
|
737 | + if ( '' !== $tab_template_path ) { |
|
738 | + include $tab_template_path; |
|
739 | + } |
|
740 | 740 | } |
741 | 741 | |
742 | 742 | /** |
@@ -745,7 +745,7 @@ discard block |
||
745 | 745 | * @return void |
746 | 746 | */ |
747 | 747 | function lsx_health_plan_recipe_data() { |
748 | - include LSX_HEALTH_PLAN_PATH . '/templates/table-recipe-data.php'; |
|
748 | + include LSX_HEALTH_PLAN_PATH . '/templates/table-recipe-data.php'; |
|
749 | 749 | } |
750 | 750 | |
751 | 751 | /** |
@@ -754,11 +754,11 @@ discard block |
||
754 | 754 | * @return recipe_type |
755 | 755 | */ |
756 | 756 | function lsx_health_plan_recipe_type() { |
757 | - $term_obj_list = get_the_terms( get_the_ID(), 'recipe-type' ); |
|
758 | - $recipe_type = $term_obj_list[0]->name; |
|
759 | - if ( ! empty( $recipe_type ) ) { |
|
760 | - return $recipe_type; |
|
761 | - } |
|
757 | + $term_obj_list = get_the_terms( get_the_ID(), 'recipe-type' ); |
|
758 | + $recipe_type = $term_obj_list[0]->name; |
|
759 | + if ( ! empty( $recipe_type ) ) { |
|
760 | + return $recipe_type; |
|
761 | + } |
|
762 | 762 | } |
763 | 763 | |
764 | 764 | /** |
@@ -769,35 +769,35 @@ discard block |
||
769 | 769 | * @return void |
770 | 770 | */ |
771 | 771 | function lsx_health_plan_workout_video_play_button( $m, $group, $echo = true ) { |
772 | - $workout_video = ''; |
|
773 | - $giphy = ''; |
|
774 | - $youtube = ''; |
|
775 | - if ( isset( $group['connected_videos'] ) && '' !== $group['connected_videos'] ) { |
|
776 | - $workout_video = esc_html( $group['connected_videos'] ); |
|
777 | - $giphy = get_post_meta( $workout_video, 'video_giphy_source', true ); |
|
778 | - $youtube = esc_url( get_post_meta( $workout_video, 'video_youtube_source', 1 ) ); |
|
779 | - $content = get_post_field( 'post_content', $workout_video ); |
|
780 | - $play_button = '<button data-toggle="modal" data-target="#workout-video-modal-' . $m . '"><span class="fa fa-play-circle"></span></button>'; |
|
781 | - |
|
782 | - $modal_body = ''; |
|
783 | - if ( ! empty( $giphy ) ) { |
|
784 | - $giphy = \lsx_health_plan\functions\get_video_url( $giphy ); |
|
785 | - $modal_body = $giphy; // WPCS: XSS OK. |
|
786 | - } elseif ( ! empty( $youtube ) ) { |
|
787 | - $modal_body = wp_oembed_get( $youtube, array( // WPCS: XSS OK. |
|
788 | - 'width' => 480, |
|
789 | - ) ); |
|
790 | - } |
|
791 | - $modal_body .= '<h5 class="modal-title title-lined">' . $group['name'] . '</h5>'; |
|
792 | - $modal_body .= $content; |
|
793 | - \lsx_health_plan\functions\register_modal( 'workout-video-modal-' . $m, '', $modal_body ); |
|
794 | - |
|
795 | - if ( true === $echo ) { |
|
796 | - echo wp_kses_post( $play_button ); |
|
797 | - } else { |
|
798 | - return $play_button; |
|
799 | - } |
|
800 | - } |
|
772 | + $workout_video = ''; |
|
773 | + $giphy = ''; |
|
774 | + $youtube = ''; |
|
775 | + if ( isset( $group['connected_videos'] ) && '' !== $group['connected_videos'] ) { |
|
776 | + $workout_video = esc_html( $group['connected_videos'] ); |
|
777 | + $giphy = get_post_meta( $workout_video, 'video_giphy_source', true ); |
|
778 | + $youtube = esc_url( get_post_meta( $workout_video, 'video_youtube_source', 1 ) ); |
|
779 | + $content = get_post_field( 'post_content', $workout_video ); |
|
780 | + $play_button = '<button data-toggle="modal" data-target="#workout-video-modal-' . $m . '"><span class="fa fa-play-circle"></span></button>'; |
|
781 | + |
|
782 | + $modal_body = ''; |
|
783 | + if ( ! empty( $giphy ) ) { |
|
784 | + $giphy = \lsx_health_plan\functions\get_video_url( $giphy ); |
|
785 | + $modal_body = $giphy; // WPCS: XSS OK. |
|
786 | + } elseif ( ! empty( $youtube ) ) { |
|
787 | + $modal_body = wp_oembed_get( $youtube, array( // WPCS: XSS OK. |
|
788 | + 'width' => 480, |
|
789 | + ) ); |
|
790 | + } |
|
791 | + $modal_body .= '<h5 class="modal-title title-lined">' . $group['name'] . '</h5>'; |
|
792 | + $modal_body .= $content; |
|
793 | + \lsx_health_plan\functions\register_modal( 'workout-video-modal-' . $m, '', $modal_body ); |
|
794 | + |
|
795 | + if ( true === $echo ) { |
|
796 | + echo wp_kses_post( $play_button ); |
|
797 | + } else { |
|
798 | + return $play_button; |
|
799 | + } |
|
800 | + } |
|
801 | 801 | } |
802 | 802 | |
803 | 803 | /** |
@@ -806,21 +806,21 @@ discard block |
||
806 | 806 | * @return void |
807 | 807 | */ |
808 | 808 | function lsx_health_plan_recipe_archive_description() { |
809 | - $description = ''; |
|
810 | - if ( is_post_type_archive( 'recipe' ) ) { |
|
811 | - $description = \lsx_health_plan\functions\get_option( 'recipe_archive_description', '' ); |
|
812 | - } elseif ( is_post_type_archive( 'exercise' ) ) { |
|
813 | - $description = \lsx_health_plan\functions\get_option( 'exercise_archive_description', '' ); |
|
814 | - } elseif ( is_tax() ) { |
|
815 | - $description = get_the_archive_description(); |
|
816 | - } |
|
817 | - if ( '' !== $description ) { |
|
818 | - ?> |
|
809 | + $description = ''; |
|
810 | + if ( is_post_type_archive( 'recipe' ) ) { |
|
811 | + $description = \lsx_health_plan\functions\get_option( 'recipe_archive_description', '' ); |
|
812 | + } elseif ( is_post_type_archive( 'exercise' ) ) { |
|
813 | + $description = \lsx_health_plan\functions\get_option( 'exercise_archive_description', '' ); |
|
814 | + } elseif ( is_tax() ) { |
|
815 | + $description = get_the_archive_description(); |
|
816 | + } |
|
817 | + if ( '' !== $description ) { |
|
818 | + ?> |
|
819 | 819 | <div class="lsx-hp-archive-description row"> |
820 | 820 | <div class="col-xs-12 description-wrapper"><?php echo wp_kses_post( wpautop( $description ) ); ?></div> |
821 | 821 | </div> |
822 | 822 | <?php |
823 | - } |
|
823 | + } |
|
824 | 824 | } |
825 | 825 | |
826 | 826 | /** |
@@ -829,23 +829,23 @@ discard block |
||
829 | 829 | * @return void |
830 | 830 | */ |
831 | 831 | function lsx_health_plan_workout_main_content() { |
832 | - // Getting translated endpoint. |
|
833 | - $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ); |
|
834 | - |
|
835 | - $connected_members = get_post_meta( get_the_ID(), ( $workout . '_connected_team_member' ), true ); |
|
836 | - $small_description = get_post_meta( get_the_ID(), ( $workout . '_short_description' ), true ); |
|
837 | - |
|
838 | - $content = ''; |
|
839 | - if ( $small_description || $connected_members || lsx_health_plan_has_tips() ) { |
|
840 | - $content .= '<div class="set-box set content-box entry-content">'; |
|
841 | - $content .= '<div class="the-content">'; |
|
842 | - $content .= lsx_hp_member_connected( $connected_members, $workout ); |
|
843 | - $content .= '<span>' . $small_description . '</span>'; |
|
844 | - $content .= '</div>'; |
|
845 | - $content .= do_shortcode( '[lsx_health_plan_featured_tips_block]' ); |
|
846 | - $content .= '</div>'; |
|
847 | - } |
|
848 | - return $content; |
|
832 | + // Getting translated endpoint. |
|
833 | + $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ); |
|
834 | + |
|
835 | + $connected_members = get_post_meta( get_the_ID(), ( $workout . '_connected_team_member' ), true ); |
|
836 | + $small_description = get_post_meta( get_the_ID(), ( $workout . '_short_description' ), true ); |
|
837 | + |
|
838 | + $content = ''; |
|
839 | + if ( $small_description || $connected_members || lsx_health_plan_has_tips() ) { |
|
840 | + $content .= '<div class="set-box set content-box entry-content">'; |
|
841 | + $content .= '<div class="the-content">'; |
|
842 | + $content .= lsx_hp_member_connected( $connected_members, $workout ); |
|
843 | + $content .= '<span>' . $small_description . '</span>'; |
|
844 | + $content .= '</div>'; |
|
845 | + $content .= do_shortcode( '[lsx_health_plan_featured_tips_block]' ); |
|
846 | + $content .= '</div>'; |
|
847 | + } |
|
848 | + return $content; |
|
849 | 849 | } |
850 | 850 | |
851 | 851 | /** |
@@ -854,23 +854,23 @@ discard block |
||
854 | 854 | * @return void |
855 | 855 | */ |
856 | 856 | function lsx_health_plan_meal_main_content() { |
857 | - // Getting translated endpoint. |
|
858 | - $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', 'meal' ); |
|
859 | - |
|
860 | - $connected_members = get_post_meta( get_the_ID(), ( $meal . '_connected_team_member' ), true ); |
|
861 | - $small_description = get_post_meta( get_the_ID(), ( $meal . '_short_description' ), true ); |
|
862 | - |
|
863 | - $content_meal = ''; |
|
864 | - if ( $small_description || $connected_members || lsx_health_plan_has_tips() ) { |
|
865 | - $content_meal .= '<div class="set-box set content-box entry-content">'; |
|
866 | - $content_meal .= '<div class="the-content">'; |
|
867 | - $content_meal .= lsx_hp_member_connected( $connected_members, $meal ); |
|
868 | - $content_meal .= '<span>' . $small_description . '</span>'; |
|
869 | - $content_meal .= '</div>'; |
|
870 | - $content_meal .= do_shortcode( '[lsx_health_plan_featured_tips_block]' ); |
|
871 | - $content_meal .= '</div>'; |
|
872 | - } |
|
873 | - return $content_meal; |
|
857 | + // Getting translated endpoint. |
|
858 | + $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', 'meal' ); |
|
859 | + |
|
860 | + $connected_members = get_post_meta( get_the_ID(), ( $meal . '_connected_team_member' ), true ); |
|
861 | + $small_description = get_post_meta( get_the_ID(), ( $meal . '_short_description' ), true ); |
|
862 | + |
|
863 | + $content_meal = ''; |
|
864 | + if ( $small_description || $connected_members || lsx_health_plan_has_tips() ) { |
|
865 | + $content_meal .= '<div class="set-box set content-box entry-content">'; |
|
866 | + $content_meal .= '<div class="the-content">'; |
|
867 | + $content_meal .= lsx_hp_member_connected( $connected_members, $meal ); |
|
868 | + $content_meal .= '<span>' . $small_description . '</span>'; |
|
869 | + $content_meal .= '</div>'; |
|
870 | + $content_meal .= do_shortcode( '[lsx_health_plan_featured_tips_block]' ); |
|
871 | + $content_meal .= '</div>'; |
|
872 | + } |
|
873 | + return $content_meal; |
|
874 | 874 | } |
875 | 875 | |
876 | 876 | |
@@ -881,36 +881,36 @@ discard block |
||
881 | 881 | * @return void |
882 | 882 | */ |
883 | 883 | function lsx_health_plan_workout_tab_content( $index = 1 ) { |
884 | - global $group_name,$shortcode_args; |
|
885 | - $group_name = 'workout_section_' . $index; |
|
886 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
887 | - $layout = strtolower( \lsx_health_plan\functions\get_option( 'workout_tab_layout', 'table' ) ); |
|
888 | - |
|
889 | - // Check for shortcode overrides. |
|
890 | - if ( null !== $shortcode_args && isset( $shortcode_args['layout'] ) ) { |
|
891 | - $layout = $shortcode_args['layout']; |
|
892 | - } |
|
893 | - } else { |
|
894 | - $layout = 'table'; |
|
895 | - } |
|
896 | - |
|
897 | - switch ( $layout ) { |
|
898 | - case 'list': |
|
899 | - $tab_template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-list.php'; |
|
900 | - break; |
|
901 | - |
|
902 | - case 'grid': |
|
903 | - $tab_template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-grid.php'; |
|
904 | - break; |
|
905 | - |
|
906 | - case 'table': |
|
907 | - $tab_template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-table.php'; |
|
908 | - break; |
|
909 | - } |
|
910 | - $tab_template_path = apply_filters( 'lsx_health_plan_workout_tab_content_path', $tab_template_path ); |
|
911 | - if ( '' !== $tab_template_path ) { |
|
912 | - include $tab_template_path; |
|
913 | - } |
|
884 | + global $group_name,$shortcode_args; |
|
885 | + $group_name = 'workout_section_' . $index; |
|
886 | + if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
887 | + $layout = strtolower( \lsx_health_plan\functions\get_option( 'workout_tab_layout', 'table' ) ); |
|
888 | + |
|
889 | + // Check for shortcode overrides. |
|
890 | + if ( null !== $shortcode_args && isset( $shortcode_args['layout'] ) ) { |
|
891 | + $layout = $shortcode_args['layout']; |
|
892 | + } |
|
893 | + } else { |
|
894 | + $layout = 'table'; |
|
895 | + } |
|
896 | + |
|
897 | + switch ( $layout ) { |
|
898 | + case 'list': |
|
899 | + $tab_template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-list.php'; |
|
900 | + break; |
|
901 | + |
|
902 | + case 'grid': |
|
903 | + $tab_template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-grid.php'; |
|
904 | + break; |
|
905 | + |
|
906 | + case 'table': |
|
907 | + $tab_template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-table.php'; |
|
908 | + break; |
|
909 | + } |
|
910 | + $tab_template_path = apply_filters( 'lsx_health_plan_workout_tab_content_path', $tab_template_path ); |
|
911 | + if ( '' !== $tab_template_path ) { |
|
912 | + include $tab_template_path; |
|
913 | + } |
|
914 | 914 | } |
915 | 915 | |
916 | 916 | /** |
@@ -919,28 +919,28 @@ discard block |
||
919 | 919 | * @return void |
920 | 920 | */ |
921 | 921 | function lsx_health_plan_workout_sets() { |
922 | - if ( is_singular( 'workout' ) ) { |
|
923 | - global $connected_workouts; |
|
924 | - $connected_workouts = array( get_the_ID() ); |
|
925 | - } |
|
926 | - if ( is_singular( 'plan' ) ) { |
|
927 | - |
|
928 | - global $connected_workouts; |
|
929 | - |
|
930 | - $section_key = get_query_var( 'section' ); |
|
931 | - if ( '' !== $section && \lsx_health_plan\functions\plan\has_sections() ) { |
|
932 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
933 | - if ( isset( $section_info['connected_workouts'] ) && '' !== $section_info['connected_workouts'] ) { |
|
934 | - |
|
935 | - $connected_workouts = \lsx_health_plan\functions\prep_array( $section_info['connected_workouts'] ); |
|
936 | - } |
|
937 | - } |
|
938 | - } |
|
939 | - $template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-sets.php'; |
|
940 | - $template_path = apply_filters( 'lsx_health_plan_workout_set_template_path', $template_path ); |
|
941 | - if ( '' !== $template_path && ! empty( $template_path ) ) { |
|
942 | - include $template_path; |
|
943 | - } |
|
922 | + if ( is_singular( 'workout' ) ) { |
|
923 | + global $connected_workouts; |
|
924 | + $connected_workouts = array( get_the_ID() ); |
|
925 | + } |
|
926 | + if ( is_singular( 'plan' ) ) { |
|
927 | + |
|
928 | + global $connected_workouts; |
|
929 | + |
|
930 | + $section_key = get_query_var( 'section' ); |
|
931 | + if ( '' !== $section && \lsx_health_plan\functions\plan\has_sections() ) { |
|
932 | + $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
933 | + if ( isset( $section_info['connected_workouts'] ) && '' !== $section_info['connected_workouts'] ) { |
|
934 | + |
|
935 | + $connected_workouts = \lsx_health_plan\functions\prep_array( $section_info['connected_workouts'] ); |
|
936 | + } |
|
937 | + } |
|
938 | + } |
|
939 | + $template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-sets.php'; |
|
940 | + $template_path = apply_filters( 'lsx_health_plan_workout_set_template_path', $template_path ); |
|
941 | + if ( '' !== $template_path && ! empty( $template_path ) ) { |
|
942 | + include $template_path; |
|
943 | + } |
|
944 | 944 | } |
945 | 945 | |
946 | 946 | /** |
@@ -951,11 +951,11 @@ discard block |
||
951 | 951 | */ |
952 | 952 | function lsx_health_plan_warmup_sets( $connected_workouts ) { |
953 | 953 | |
954 | - $template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-sets.php'; |
|
955 | - $template_path = apply_filters( 'lsx_health_plan_workout_set_template_path', $template_path ); |
|
956 | - if ( '' !== $template_path && ! empty( $template_path ) ) { |
|
957 | - include $template_path; |
|
958 | - } |
|
954 | + $template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-sets.php'; |
|
955 | + $template_path = apply_filters( 'lsx_health_plan_workout_set_template_path', $template_path ); |
|
956 | + if ( '' !== $template_path && ! empty( $template_path ) ) { |
|
957 | + include $template_path; |
|
958 | + } |
|
959 | 959 | } |
960 | 960 | |
961 | 961 | /** |
@@ -965,48 +965,48 @@ discard block |
||
965 | 965 | * @return void |
966 | 966 | */ |
967 | 967 | function lsx_hp_meal_plan_recipes( $args = array() ) { |
968 | - $defaults = array( |
|
969 | - 'meal_id' => false, |
|
970 | - 'meal_time' => '', |
|
971 | - 'modal' => true, |
|
972 | - ); |
|
973 | - $args = wp_parse_args( $args, $defaults ); |
|
974 | - // Looking for recipes. |
|
975 | - $connected_recipes = get_post_meta( $args['meal_id'], $args['meal_time'] . '_recipes', true ); |
|
976 | - if ( ! empty( $connected_recipes ) ) { |
|
977 | - $query_args = array( |
|
978 | - 'orderby' => 'date', |
|
979 | - 'order' => 'DESC', |
|
980 | - 'post_type' => 'recipe', |
|
981 | - 'post__in' => $connected_recipes, |
|
982 | - ); |
|
983 | - $recipes = new WP_Query( $query_args ); |
|
984 | - ?> |
|
968 | + $defaults = array( |
|
969 | + 'meal_id' => false, |
|
970 | + 'meal_time' => '', |
|
971 | + 'modal' => true, |
|
972 | + ); |
|
973 | + $args = wp_parse_args( $args, $defaults ); |
|
974 | + // Looking for recipes. |
|
975 | + $connected_recipes = get_post_meta( $args['meal_id'], $args['meal_time'] . '_recipes', true ); |
|
976 | + if ( ! empty( $connected_recipes ) ) { |
|
977 | + $query_args = array( |
|
978 | + 'orderby' => 'date', |
|
979 | + 'order' => 'DESC', |
|
980 | + 'post_type' => 'recipe', |
|
981 | + 'post__in' => $connected_recipes, |
|
982 | + ); |
|
983 | + $recipes = new WP_Query( $query_args ); |
|
984 | + ?> |
|
985 | 985 | <div class="recipes"> |
986 | 986 | <div class="row eating-row"> |
987 | 987 | <?php |
988 | - if ( $recipes->have_posts() ) { |
|
989 | - while ( $recipes->have_posts() ) { |
|
990 | - $recipes->the_post(); |
|
991 | - if ( false !== $args['modal'] ) { |
|
992 | - \lsx_health_plan\functions\recipes\register_recipe_modal(); |
|
993 | - } |
|
994 | - ?> |
|
988 | + if ( $recipes->have_posts() ) { |
|
989 | + while ( $recipes->have_posts() ) { |
|
990 | + $recipes->the_post(); |
|
991 | + if ( false !== $args['modal'] ) { |
|
992 | + \lsx_health_plan\functions\recipes\register_recipe_modal(); |
|
993 | + } |
|
994 | + ?> |
|
995 | 995 | <div class="recipe-column"> |
996 | 996 | <a data-toggle="modal" data-target="#recipe-modal-<?php echo esc_attr( get_the_ID() ); ?>" href="#recipe-modal-<?php echo esc_attr( get_the_ID() ); ?>" class="recipe-box box-shadow"> |
997 | 997 | <div class="recipe-feature-img"> |
998 | 998 | <?php |
999 | - $featured_image = get_the_post_thumbnail(); |
|
1000 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
1001 | - the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
1002 | - 'class' => 'aligncenter', |
|
1003 | - ) ); |
|
1004 | - } else { |
|
1005 | - ?> |
|
999 | + $featured_image = get_the_post_thumbnail(); |
|
1000 | + if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
1001 | + the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
1002 | + 'class' => 'aligncenter', |
|
1003 | + ) ); |
|
1004 | + } else { |
|
1005 | + ?> |
|
1006 | 1006 | <img loading="lazy" class="placeholder" src="<?php echo esc_attr( plugin_dir_url( __DIR__ ) . 'assets/images/placeholder.jpg' ); ?>"> |
1007 | 1007 | <?php |
1008 | - } |
|
1009 | - ?> |
|
1008 | + } |
|
1009 | + ?> |
|
1010 | 1010 | </div> |
1011 | 1011 | <div class="recipe-content"> |
1012 | 1012 | <h3 class="recipe-title"><?php the_title(); ?></h3> |
@@ -1015,41 +1015,41 @@ discard block |
||
1015 | 1015 | </a> |
1016 | 1016 | </div> |
1017 | 1017 | <?php |
1018 | - } |
|
1019 | - } |
|
1020 | - wp_reset_postdata(); |
|
1021 | - ?> |
|
1018 | + } |
|
1019 | + } |
|
1020 | + wp_reset_postdata(); |
|
1021 | + ?> |
|
1022 | 1022 | </div> |
1023 | 1023 | </div> |
1024 | 1024 | <?php |
1025 | 1025 | |
1026 | - } |
|
1026 | + } |
|
1027 | 1027 | } |
1028 | 1028 | |
1029 | 1029 | /** |
1030 | 1030 | * Output the connected. |
1031 | 1031 | */ |
1032 | 1032 | function lsx_hp_recipe_plan_meta( $args = array() ) { |
1033 | - $defaults = array(); |
|
1034 | - $top_level_plans = array(); |
|
1035 | - // Get meals this exercise is connected to. |
|
1036 | - $plans = get_post_meta( get_the_ID(), 'connected_plans', true ); |
|
1037 | - if ( ! empty( $plans ) ) { |
|
1038 | - $plan = end( $plans ); |
|
1039 | - $has_parent = wp_get_post_parent_id( $plan ); |
|
1040 | - if ( 0 === $has_parent ) { |
|
1041 | - $top_level_plans[] = $plan; |
|
1042 | - } elseif ( false !== $top_level_plans ) { |
|
1043 | - $top_level_plans[] = $has_parent; |
|
1044 | - } |
|
1045 | - } |
|
1046 | - if ( ! empty( $top_level_plans ) && ( '' !== $top_level_plans ) ) { |
|
1047 | - $top_level_plans = array_unique( $top_level_plans ); |
|
1048 | - $top_level_plan = end( $top_level_plans ); |
|
1049 | - ?> |
|
1033 | + $defaults = array(); |
|
1034 | + $top_level_plans = array(); |
|
1035 | + // Get meals this exercise is connected to. |
|
1036 | + $plans = get_post_meta( get_the_ID(), 'connected_plans', true ); |
|
1037 | + if ( ! empty( $plans ) ) { |
|
1038 | + $plan = end( $plans ); |
|
1039 | + $has_parent = wp_get_post_parent_id( $plan ); |
|
1040 | + if ( 0 === $has_parent ) { |
|
1041 | + $top_level_plans[] = $plan; |
|
1042 | + } elseif ( false !== $top_level_plans ) { |
|
1043 | + $top_level_plans[] = $has_parent; |
|
1044 | + } |
|
1045 | + } |
|
1046 | + if ( ! empty( $top_level_plans ) && ( '' !== $top_level_plans ) ) { |
|
1047 | + $top_level_plans = array_unique( $top_level_plans ); |
|
1048 | + $top_level_plan = end( $top_level_plans ); |
|
1049 | + ?> |
|
1050 | 1050 | <span class="recipe-type recipe-parent"><?php echo esc_html( get_the_title( $top_level_plan ) ); ?></span> |
1051 | 1051 | <?php |
1052 | - } |
|
1052 | + } |
|
1053 | 1053 | } |
1054 | 1054 | |
1055 | 1055 | /** |
@@ -1057,42 +1057,42 @@ discard block |
||
1057 | 1057 | */ |
1058 | 1058 | function lsx_hp_exercise_plan_meta() { |
1059 | 1059 | |
1060 | - $top_level_plans = array(); |
|
1061 | - |
|
1062 | - // Get workouts this exercise is connected to. |
|
1063 | - $workouts = get_post_meta( get_the_ID(), 'connected_workouts', true ); |
|
1064 | - |
|
1065 | - if ( '' !== $workouts && ! is_array( $workouts ) ) { |
|
1066 | - $workouts = array( $workouts ); |
|
1067 | - } |
|
1068 | - if ( ! empty( $workouts ) ) { |
|
1069 | - foreach ( $workouts as $workout ) { |
|
1070 | - // Get the plans this workout is connected to. |
|
1071 | - $plans = get_post_meta( $workout, 'connected_plans', true ); |
|
1072 | - |
|
1073 | - if ( '' !== $plans && ! is_array( $plans ) ) { |
|
1074 | - $plans = array( $plans ); |
|
1075 | - } |
|
1076 | - if ( ! empty( $plans ) ) { |
|
1077 | - foreach ( $plans as $plan ) { |
|
1078 | - $has_parent = wp_get_post_parent_id( $plan ); |
|
1079 | - if ( 0 === $has_parent ) { |
|
1080 | - $top_level_plans = $plan; |
|
1081 | - } else { |
|
1082 | - $top_level_plans = $has_parent; |
|
1083 | - } |
|
1084 | - } |
|
1085 | - } |
|
1086 | - } |
|
1087 | - } |
|
1088 | - |
|
1089 | - if ( ! empty( $top_level_plans ) && ( '' !== $top_level_plans ) ) { |
|
1090 | - $top_level_plans = array_unique( $top_level_plans ); |
|
1091 | - $top_level_plan = end( $top_level_plans ); |
|
1092 | - ?> |
|
1060 | + $top_level_plans = array(); |
|
1061 | + |
|
1062 | + // Get workouts this exercise is connected to. |
|
1063 | + $workouts = get_post_meta( get_the_ID(), 'connected_workouts', true ); |
|
1064 | + |
|
1065 | + if ( '' !== $workouts && ! is_array( $workouts ) ) { |
|
1066 | + $workouts = array( $workouts ); |
|
1067 | + } |
|
1068 | + if ( ! empty( $workouts ) ) { |
|
1069 | + foreach ( $workouts as $workout ) { |
|
1070 | + // Get the plans this workout is connected to. |
|
1071 | + $plans = get_post_meta( $workout, 'connected_plans', true ); |
|
1072 | + |
|
1073 | + if ( '' !== $plans && ! is_array( $plans ) ) { |
|
1074 | + $plans = array( $plans ); |
|
1075 | + } |
|
1076 | + if ( ! empty( $plans ) ) { |
|
1077 | + foreach ( $plans as $plan ) { |
|
1078 | + $has_parent = wp_get_post_parent_id( $plan ); |
|
1079 | + if ( 0 === $has_parent ) { |
|
1080 | + $top_level_plans = $plan; |
|
1081 | + } else { |
|
1082 | + $top_level_plans = $has_parent; |
|
1083 | + } |
|
1084 | + } |
|
1085 | + } |
|
1086 | + } |
|
1087 | + } |
|
1088 | + |
|
1089 | + if ( ! empty( $top_level_plans ) && ( '' !== $top_level_plans ) ) { |
|
1090 | + $top_level_plans = array_unique( $top_level_plans ); |
|
1091 | + $top_level_plan = end( $top_level_plans ); |
|
1092 | + ?> |
|
1093 | 1093 | <span class="recipe-type recipe-parent"><?php echo esc_html( get_the_title( $top_level_plan ) ); ?></span> |
1094 | 1094 | <?php |
1095 | - } |
|
1095 | + } |
|
1096 | 1096 | } |
1097 | 1097 | |
1098 | 1098 | /** |
@@ -1102,7 +1102,7 @@ discard block |
||
1102 | 1102 | * @return void |
1103 | 1103 | */ |
1104 | 1104 | function lsx_hp_single_related( $related_content, $post_type_text ) { |
1105 | - ?> |
|
1105 | + ?> |
|
1106 | 1106 | <section id="lsx-hp-related"> |
1107 | 1107 | <div class="row lsx-related-posts lsx-related-posts-title"> |
1108 | 1108 | <div class="col-xs-12"> |
@@ -1113,14 +1113,14 @@ discard block |
||
1113 | 1113 | <div class="col-xs-12"> |
1114 | 1114 | <div class="lsx-related-posts-wrapper"> |
1115 | 1115 | <?php |
1116 | - $i = 0; |
|
1117 | - foreach ( $related_content as $article ) { |
|
1118 | - $post_title = get_the_title( $article ); |
|
1119 | - $post_categories = wp_get_post_categories( $article ); |
|
1120 | - $post_link = get_permalink( $article ); |
|
1121 | - |
|
1122 | - $cats = array(); |
|
1123 | - ?> |
|
1116 | + $i = 0; |
|
1117 | + foreach ( $related_content as $article ) { |
|
1118 | + $post_title = get_the_title( $article ); |
|
1119 | + $post_categories = wp_get_post_categories( $article ); |
|
1120 | + $post_link = get_permalink( $article ); |
|
1121 | + |
|
1122 | + $cats = array(); |
|
1123 | + ?> |
|
1124 | 1124 | <article id="post-<?php echo esc_html( $article ); ?>" class="lsx-slot post"> |
1125 | 1125 | <div class="entry-layout lsx-hp-shadow"> |
1126 | 1126 | <div class="entry-layout-content"> |
@@ -1128,25 +1128,25 @@ discard block |
||
1128 | 1128 | <div class="entry-image"> |
1129 | 1129 | <a href="<?php echo esc_url( $post_link ); ?>" class="thumbnail"> |
1130 | 1130 | <?php |
1131 | - $featured_image = get_the_post_thumbnail( $article, 'lsx-thumbnail-wide' ); |
|
1132 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
1133 | - echo wp_kses_post( $featured_image ); |
|
1134 | - } else { |
|
1135 | - ?> |
|
1131 | + $featured_image = get_the_post_thumbnail( $article, 'lsx-thumbnail-wide' ); |
|
1132 | + if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
1133 | + echo wp_kses_post( $featured_image ); |
|
1134 | + } else { |
|
1135 | + ?> |
|
1136 | 1136 | <img loading="lazy" class="placeholder" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
1137 | 1137 | <?php |
1138 | - } |
|
1139 | - ?> |
|
1138 | + } |
|
1139 | + ?> |
|
1140 | 1140 | </a> |
1141 | 1141 | </div> |
1142 | 1142 | <div class="entry-meta"> |
1143 | 1143 | <?php |
1144 | - foreach ( $post_categories as $c ) { |
|
1145 | - $cat = get_category( $c ); |
|
1146 | - /* Translators: %s: category name */ |
|
1147 | - $cats[] = '<a href="' . esc_url( get_category_link( $cat->term_id ) ) . '" title="' . sprintf( esc_html__( 'Posts in %s', 'lsx-blog-customizer' ), $cat->name ) . '">' . $cat->name . '</a>'; |
|
1148 | - } |
|
1149 | - if ( ! empty( $cats ) ) { ?> |
|
1144 | + foreach ( $post_categories as $c ) { |
|
1145 | + $cat = get_category( $c ); |
|
1146 | + /* Translators: %s: category name */ |
|
1147 | + $cats[] = '<a href="' . esc_url( get_category_link( $cat->term_id ) ) . '" title="' . sprintf( esc_html__( 'Posts in %s', 'lsx-blog-customizer' ), $cat->name ) . '">' . $cat->name . '</a>'; |
|
1148 | + } |
|
1149 | + if ( ! empty( $cats ) ) { ?> |
|
1150 | 1150 | <div class="post-categories"><span></span><?php echo wp_kses_post( implode( ', ', $cats ) ); ?></div> |
1151 | 1151 | <?php } ?> |
1152 | 1152 | </div> |
@@ -1161,8 +1161,8 @@ discard block |
||
1161 | 1161 | </article> |
1162 | 1162 | |
1163 | 1163 | <?php |
1164 | - if (++$i === 3) break; |
|
1165 | - } ?> |
|
1164 | + if (++$i === 3) break; |
|
1165 | + } ?> |
|
1166 | 1166 | </div> |
1167 | 1167 | </div> |
1168 | 1168 | </div> |
@@ -1177,32 +1177,32 @@ discard block |
||
1177 | 1177 | * @return void |
1178 | 1178 | */ |
1179 | 1179 | function lsx_hp_member_connected( $connected_members, $post_type ) { |
1180 | - if ( ! empty( $connected_members ) ) { |
|
1181 | - $content = '<div id="hp-connected-members" class="hp-connected-members connected-' . $post_type . '">'; |
|
1182 | - foreach ( $connected_members as $member ) { |
|
1183 | - $post_link = get_permalink( $member ); |
|
1184 | - $member_name = get_the_title( $member ); |
|
1185 | - $member_name = '<span class="lsx-team-name">' . $member_name . '</span>'; |
|
1186 | - |
|
1187 | - $member_link = '<a href="' . $post_link . '" >' . $member_name . '</a>'; |
|
1188 | - |
|
1189 | - $roles = ''; |
|
1190 | - $terms = get_the_terms( $member, 'team_role' ); |
|
1191 | - |
|
1192 | - if ( $terms && ! is_wp_error( $terms ) ) { |
|
1193 | - $roles = array(); |
|
1194 | - |
|
1195 | - foreach ( $terms as $term ) { |
|
1196 | - $roles[] = $term->name; |
|
1197 | - } |
|
1198 | - |
|
1199 | - $roles = join( ', ', $roles ); |
|
1200 | - } |
|
1201 | - $member_roles = '' !== $roles ? "<small class='lsx-team-roles'>$roles</small>" : ''; |
|
1202 | - |
|
1203 | - $content .= '<p>' . $member_roles . ': ' . $member_link . '</p>'; |
|
1204 | - } |
|
1205 | - $content .= '</div>'; |
|
1206 | - return $content; |
|
1207 | - } |
|
1180 | + if ( ! empty( $connected_members ) ) { |
|
1181 | + $content = '<div id="hp-connected-members" class="hp-connected-members connected-' . $post_type . '">'; |
|
1182 | + foreach ( $connected_members as $member ) { |
|
1183 | + $post_link = get_permalink( $member ); |
|
1184 | + $member_name = get_the_title( $member ); |
|
1185 | + $member_name = '<span class="lsx-team-name">' . $member_name . '</span>'; |
|
1186 | + |
|
1187 | + $member_link = '<a href="' . $post_link . '" >' . $member_name . '</a>'; |
|
1188 | + |
|
1189 | + $roles = ''; |
|
1190 | + $terms = get_the_terms( $member, 'team_role' ); |
|
1191 | + |
|
1192 | + if ( $terms && ! is_wp_error( $terms ) ) { |
|
1193 | + $roles = array(); |
|
1194 | + |
|
1195 | + foreach ( $terms as $term ) { |
|
1196 | + $roles[] = $term->name; |
|
1197 | + } |
|
1198 | + |
|
1199 | + $roles = join( ', ', $roles ); |
|
1200 | + } |
|
1201 | + $member_roles = '' !== $roles ? "<small class='lsx-team-roles'>$roles</small>" : ''; |
|
1202 | + |
|
1203 | + $content .= '<p>' . $member_roles . ': ' . $member_link . '</p>'; |
|
1204 | + } |
|
1205 | + $content .= '</div>'; |
|
1206 | + return $content; |
|
1207 | + } |
|
1208 | 1208 | } |
@@ -14,23 +14,23 @@ discard block |
||
14 | 14 | ?> |
15 | 15 | <div class="col-md-4" > |
16 | 16 | <div class="lsx-health-plan-box"> |
17 | - <h3 class="title warm-up-title title-lined"><?php esc_html_e( 'Your Warm-up', 'lsx-health-plan' ); ?><?php lsx_get_svg_icon( 'warm.svg' ); ?></h3> |
|
17 | + <h3 class="title warm-up-title title-lined"><?php esc_html_e('Your Warm-up', 'lsx-health-plan'); ?><?php lsx_get_svg_icon('warm.svg'); ?></h3> |
|
18 | 18 | <div class="spacer"></div> |
19 | 19 | <?php |
20 | - $intro_text = \lsx_health_plan\functions\get_option( 'warmup_intro', false ); |
|
21 | - if ( false !== $intro_text ) { |
|
20 | + $intro_text = \lsx_health_plan\functions\get_option('warmup_intro', false); |
|
21 | + if (false !== $intro_text) { |
|
22 | 22 | ?> |
23 | 23 | <div class="excerpt"> |
24 | - <p><?php echo wp_kses_post( $intro_text ); ?></p> |
|
24 | + <p><?php echo wp_kses_post($intro_text); ?></p> |
|
25 | 25 | </div> |
26 | 26 | <?php |
27 | 27 | } |
28 | - $warm_up = \lsx_health_plan\functions\get_option( 'endpoint_warm_up', false ); |
|
29 | - if ( false === $warm_up ) { |
|
28 | + $warm_up = \lsx_health_plan\functions\get_option('endpoint_warm_up', false); |
|
29 | + if (false === $warm_up) { |
|
30 | 30 | $warm_up = 'warm-up'; |
31 | 31 | } |
32 | 32 | ?> |
33 | - <a href="<?php the_permalink(); ?><?php echo esc_attr( $warm_up ); ?>/" class="btn"><?php esc_html_e( 'Start your warm-up', 'lsx-health-plan' ); ?></a> |
|
33 | + <a href="<?php the_permalink(); ?><?php echo esc_attr($warm_up); ?>/" class="btn"><?php esc_html_e('Start your warm-up', 'lsx-health-plan'); ?></a> |
|
34 | 34 | </div> |
35 | 35 | </div> |
36 | 36 | <?php |
@@ -42,29 +42,29 @@ discard block |
||
42 | 42 | * @return void |
43 | 43 | */ |
44 | 44 | function lsx_health_plan_workout_box() { |
45 | - if ( ! post_type_exists( 'workout' ) ) { |
|
45 | + if ( ! post_type_exists('workout')) { |
|
46 | 46 | return; |
47 | 47 | } |
48 | 48 | ?> |
49 | 49 | <div class="col-md-4" > |
50 | 50 | <div class="lsx-health-plan-box"> |
51 | - <h3 class="title work-out-title title-lined"><?php esc_html_e( 'Your Workout', 'lsx-health-plan' ); ?><?php lsx_get_svg_icon( 'work.svg' ); ?></h3> |
|
51 | + <h3 class="title work-out-title title-lined"><?php esc_html_e('Your Workout', 'lsx-health-plan'); ?><?php lsx_get_svg_icon('work.svg'); ?></h3> |
|
52 | 52 | <div class="spacer"></div> |
53 | 53 | <?php |
54 | - $intro_text = \lsx_health_plan\functions\get_option( 'workout_intro', false ); |
|
55 | - if ( false !== $intro_text ) { |
|
54 | + $intro_text = \lsx_health_plan\functions\get_option('workout_intro', false); |
|
55 | + if (false !== $intro_text) { |
|
56 | 56 | ?> |
57 | 57 | <div class="excerpt"> |
58 | - <p><?php echo wp_kses_post( $intro_text ); ?></p> |
|
58 | + <p><?php echo wp_kses_post($intro_text); ?></p> |
|
59 | 59 | </div> |
60 | 60 | <?php |
61 | 61 | } |
62 | - $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', false ); |
|
63 | - if ( false === $workout ) { |
|
62 | + $workout = \lsx_health_plan\functions\get_option('endpoint_workout', false); |
|
63 | + if (false === $workout) { |
|
64 | 64 | $workout = 'workout'; |
65 | 65 | } |
66 | 66 | ?> |
67 | - <a href="<?php the_permalink(); ?><?php echo esc_attr( $workout ); ?>/" class="btn"><?php esc_html_e( 'Start your workout', 'lsx-health-plan' ); ?></a> |
|
67 | + <a href="<?php the_permalink(); ?><?php echo esc_attr($workout); ?>/" class="btn"><?php esc_html_e('Start your workout', 'lsx-health-plan'); ?></a> |
|
68 | 68 | </div> |
69 | 69 | </div> |
70 | 70 | <?php |
@@ -76,29 +76,29 @@ discard block |
||
76 | 76 | * @return void |
77 | 77 | */ |
78 | 78 | function lsx_health_plan_meal_box() { |
79 | - if ( ! post_type_exists( 'meal' ) ) { |
|
79 | + if ( ! post_type_exists('meal')) { |
|
80 | 80 | return; |
81 | 81 | } |
82 | 82 | ?> |
83 | 83 | <div class="col-md-4" > |
84 | 84 | <div class="lsx-health-plan-box"> |
85 | - <h3 class="title meal-plan-title title-lined"><?php esc_html_e( 'Your Meal Plan', 'lsx-health-plan' ); ?><?php lsx_get_svg_icon( 'meal.svg' ); ?></h3> |
|
85 | + <h3 class="title meal-plan-title title-lined"><?php esc_html_e('Your Meal Plan', 'lsx-health-plan'); ?><?php lsx_get_svg_icon('meal.svg'); ?></h3> |
|
86 | 86 | <div class="spacer"></div> |
87 | 87 | <?php |
88 | - $intro_text = \lsx_health_plan\functions\get_option( 'meal_plan_intro', false ); |
|
89 | - if ( false !== $intro_text ) { |
|
88 | + $intro_text = \lsx_health_plan\functions\get_option('meal_plan_intro', false); |
|
89 | + if (false !== $intro_text) { |
|
90 | 90 | ?> |
91 | 91 | <div class="excerpt"> |
92 | - <p><?php echo wp_kses_post( $intro_text ); ?></p> |
|
92 | + <p><?php echo wp_kses_post($intro_text); ?></p> |
|
93 | 93 | </div> |
94 | 94 | <?php |
95 | 95 | } |
96 | - $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', false ); |
|
97 | - if ( false === $meal ) { |
|
96 | + $meal = \lsx_health_plan\functions\get_option('endpoint_meal', false); |
|
97 | + if (false === $meal) { |
|
98 | 98 | $meal = 'meal'; |
99 | 99 | } |
100 | 100 | ?> |
101 | - <a href="<?php the_permalink(); ?><?php echo esc_attr( $meal ); ?>/" class="btn"><?php esc_html_e( 'View your meal plan', 'lsx-health-plan' ); ?></a> |
|
101 | + <a href="<?php the_permalink(); ?><?php echo esc_attr($meal); ?>/" class="btn"><?php esc_html_e('View your meal plan', 'lsx-health-plan'); ?></a> |
|
102 | 102 | </div> |
103 | 103 | </div> |
104 | 104 | <?php |
@@ -110,29 +110,29 @@ discard block |
||
110 | 110 | * @return void |
111 | 111 | */ |
112 | 112 | function lsx_health_plan_recipe_box() { |
113 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
113 | + if ( ! post_type_exists('recipe')) { |
|
114 | 114 | return; |
115 | 115 | } |
116 | 116 | ?> |
117 | 117 | <div class="col-md-4" > |
118 | 118 | <div class="lsx-health-plan-box"> |
119 | - <h3 class="title recipes-title title-lined"><?php esc_html_e( 'Recipes', 'lsx-health-plan' ); ?><?php lsx_get_svg_icon( 'recipes.svg' ); ?></h3> |
|
119 | + <h3 class="title recipes-title title-lined"><?php esc_html_e('Recipes', 'lsx-health-plan'); ?><?php lsx_get_svg_icon('recipes.svg'); ?></h3> |
|
120 | 120 | <div class="spacer"></div> |
121 | 121 | <?php |
122 | - $intro_text = \lsx_health_plan\functions\get_option( 'recipes_intro', false ); |
|
123 | - if ( false !== $intro_text ) { |
|
122 | + $intro_text = \lsx_health_plan\functions\get_option('recipes_intro', false); |
|
123 | + if (false !== $intro_text) { |
|
124 | 124 | ?> |
125 | 125 | <div class="excerpt"> |
126 | - <p><?php echo wp_kses_post( $intro_text ); ?></p> |
|
126 | + <p><?php echo wp_kses_post($intro_text); ?></p> |
|
127 | 127 | </div> |
128 | 128 | <?php |
129 | 129 | } |
130 | - $recipes = \lsx_health_plan\functions\get_option( 'endpoint_recipe', false ); |
|
131 | - if ( false === $recipes ) { |
|
130 | + $recipes = \lsx_health_plan\functions\get_option('endpoint_recipe', false); |
|
131 | + if (false === $recipes) { |
|
132 | 132 | $recipes = 'recipes'; |
133 | 133 | } |
134 | 134 | ?> |
135 | - <a href="<?php the_permalink(); ?><?php echo esc_attr( $recipes ); ?>/" class="btn"><?php esc_html_e( 'View all recipes', 'lsx-health-plan' ); ?></a> |
|
135 | + <a href="<?php the_permalink(); ?><?php echo esc_attr($recipes); ?>/" class="btn"><?php esc_html_e('View all recipes', 'lsx-health-plan'); ?></a> |
|
136 | 136 | </div> |
137 | 137 | </div> |
138 | 138 | <?php |
@@ -148,15 +148,15 @@ discard block |
||
148 | 148 | ?> |
149 | 149 | <div class="col-md-4 day-download-box" > |
150 | 150 | <div class="lsx-health-plan-box"> |
151 | - <h3 class="title downloads-title title-lined"><?php esc_html_e( 'Downloads', 'lsx-health-plan' ); ?><?php lsx_get_svg_icon( 'download.svg' ); ?></h3> |
|
151 | + <h3 class="title downloads-title title-lined"><?php esc_html_e('Downloads', 'lsx-health-plan'); ?><?php lsx_get_svg_icon('download.svg'); ?></h3> |
|
152 | 152 | <div class="spacer"></div> |
153 | 153 | <div class="download-list"> |
154 | 154 | <ul> |
155 | 155 | <?php |
156 | 156 | $downloads = \lsx_health_plan\functions\get_downloads(); |
157 | - if ( ! empty( $downloads ) ) { |
|
158 | - foreach ( $downloads as $download ) { |
|
159 | - echo wp_kses_post( '<li><a href=""><i class="fa fa-file-pdf"></i>' . do_shortcode( '[download id="' . $download . '"]' ) . '</a></li>' ); |
|
157 | + if ( ! empty($downloads)) { |
|
158 | + foreach ($downloads as $download) { |
|
159 | + echo wp_kses_post('<li><a href=""><i class="fa fa-file-pdf"></i>' . do_shortcode('[download id="' . $download . '"]') . '</a></li>'); |
|
160 | 160 | } |
161 | 161 | } |
162 | 162 | ?> |
@@ -173,15 +173,15 @@ discard block |
||
173 | 173 | * @param string $tab |
174 | 174 | * @return void |
175 | 175 | */ |
176 | -function lsx_health_plan_nav_class( $tab = '' ) { |
|
176 | +function lsx_health_plan_nav_class($tab = '') { |
|
177 | 177 | $nav_classes = array(); |
178 | - if ( function_exists( 'is_wc_endpoint_url' ) && 'edit-account' === $tab && is_wc_endpoint_url( 'edit-account' ) ) { |
|
178 | + if (function_exists('is_wc_endpoint_url') && 'edit-account' === $tab && is_wc_endpoint_url('edit-account')) { |
|
179 | 179 | $nav_classes[] = 'active'; |
180 | - } elseif ( lsx_health_plan_is_current_tab( $tab ) ) { |
|
180 | + } elseif (lsx_health_plan_is_current_tab($tab)) { |
|
181 | 181 | $nav_classes[] = 'active'; |
182 | 182 | } |
183 | - if ( ! empty( $nav_classes ) ) { |
|
184 | - echo wp_kses_post( implode( ' ', $nav_classes ) ); |
|
183 | + if ( ! empty($nav_classes)) { |
|
184 | + echo wp_kses_post(implode(' ', $nav_classes)); |
|
185 | 185 | } |
186 | 186 | } |
187 | 187 | |
@@ -196,19 +196,19 @@ discard block |
||
196 | 196 | <ul class="nav nav-pills"> |
197 | 197 | <li class=" |
198 | 198 | <?php |
199 | - if ( ( function_exists( 'is_wc_endpoint_url' ) && ! is_wc_endpoint_url( 'edit-account' ) ) || ! function_exists( 'is_wc_endpoint_url' ) ) { |
|
200 | - echo esc_attr( 'active' ); |
|
199 | + if ((function_exists('is_wc_endpoint_url') && ! is_wc_endpoint_url('edit-account')) || ! function_exists('is_wc_endpoint_url')) { |
|
200 | + echo esc_attr('active'); |
|
201 | 201 | } |
202 | 202 | ?> |
203 | - "><a class="my-plan-tab" href="<?php the_permalink(); ?>"><?php esc_html_e( 'My Plans', 'lsx-health-plan' ); ?></a></li> |
|
203 | + "><a class="my-plan-tab" href="<?php the_permalink(); ?>"><?php esc_html_e('My Plans', 'lsx-health-plan'); ?></a></li> |
|
204 | 204 | <li class=" |
205 | 205 | <?php |
206 | - if ( function_exists( 'is_wc_endpoint_url' ) && is_wc_endpoint_url( 'edit-account' ) ) { |
|
207 | - echo esc_attr( 'active' ); |
|
206 | + if (function_exists('is_wc_endpoint_url') && is_wc_endpoint_url('edit-account')) { |
|
207 | + echo esc_attr('active'); |
|
208 | 208 | } |
209 | 209 | ?> |
210 | - "><a class="account-details-tab" href="<?php the_permalink(); ?>edit-account/"><?php esc_html_e( 'Account Details', 'lsx-health-plan' ); ?></a></li> |
|
211 | - <li class=""><a class="logout-tab" href="<?php echo esc_url( wp_logout_url( get_permalink() ) ); ?>"><?php esc_html_e( 'Logout', 'lsx-health-plan' ); ?></a></li> |
|
210 | + "><a class="account-details-tab" href="<?php the_permalink(); ?>edit-account/"><?php esc_html_e('Account Details', 'lsx-health-plan'); ?></a></li> |
|
211 | + <li class=""><a class="logout-tab" href="<?php echo esc_url(wp_logout_url(get_permalink())); ?>"><?php esc_html_e('Logout', 'lsx-health-plan'); ?></a></li> |
|
212 | 212 | </ul> |
213 | 213 | </div> |
214 | 214 | <?php |
@@ -223,76 +223,76 @@ discard block |
||
223 | 223 | ?> |
224 | 224 | <div class="lsx-health-plan my-profile-block wp-block-cover alignfull"> |
225 | 225 | <div class="wp-block-cover__inner-container"> |
226 | - <h2><?php esc_html_e( 'My Dashboard', 'lsx-health-plan' ); ?></h2> |
|
226 | + <h2><?php esc_html_e('My Dashboard', 'lsx-health-plan'); ?></h2> |
|
227 | 227 | <section id="dashboard-card"> |
228 | 228 | <div class="profile-navigation"> |
229 | 229 | <div class="profile-photo"> |
230 | 230 | <?php |
231 | 231 | global $current_user; |
232 | 232 | get_current_user(); |
233 | - echo get_avatar( $current_user->ID, 240 ); |
|
233 | + echo get_avatar($current_user->ID, 240); |
|
234 | 234 | ?> |
235 | 235 | </div> |
236 | 236 | </div> |
237 | 237 | <div class="profile-details"> |
238 | - <h1 class="title-lined has-text-color"><?php echo esc_html( $current_user->display_name ); ?></h1> |
|
238 | + <h1 class="title-lined has-text-color"><?php echo esc_html($current_user->display_name); ?></h1> |
|
239 | 239 | <?php |
240 | - $disable_stats = \lsx_health_plan\functions\get_option( 'disable_all_stats', false ); |
|
241 | - if ( 'on' !== $disable_stats ) { |
|
240 | + $disable_stats = \lsx_health_plan\functions\get_option('disable_all_stats', false); |
|
241 | + if ('on' !== $disable_stats) { |
|
242 | 242 | |
243 | - $is_weight_disabled = \lsx_health_plan\functions\get_option( 'disable_weight_checkbox', false ); |
|
244 | - $is_height_disabled = \lsx_health_plan\functions\get_option( 'disable_height_checkbox', false ); |
|
245 | - $is_waist_disabled = \lsx_health_plan\functions\get_option( 'disable_waist_checkbox', false ); |
|
246 | - $is_bmi_disabled = \lsx_health_plan\functions\get_option( 'disable_bmi_checkbox', false ); |
|
243 | + $is_weight_disabled = \lsx_health_plan\functions\get_option('disable_weight_checkbox', false); |
|
244 | + $is_height_disabled = \lsx_health_plan\functions\get_option('disable_height_checkbox', false); |
|
245 | + $is_waist_disabled = \lsx_health_plan\functions\get_option('disable_waist_checkbox', false); |
|
246 | + $is_bmi_disabled = \lsx_health_plan\functions\get_option('disable_bmi_checkbox', false); |
|
247 | 247 | |
248 | - $weight = get_user_meta( get_current_user_id(), 'weight', true ); |
|
249 | - $waist = get_user_meta( get_current_user_id(), 'waist', true ); |
|
250 | - $height = get_user_meta( get_current_user_id(), 'height', true ); |
|
248 | + $weight = get_user_meta(get_current_user_id(), 'weight', true); |
|
249 | + $waist = get_user_meta(get_current_user_id(), 'waist', true); |
|
250 | + $height = get_user_meta(get_current_user_id(), 'height', true); |
|
251 | 251 | |
252 | 252 | $height_m = 0; |
253 | - if ( is_numeric( $height) ) { |
|
253 | + if (is_numeric($height)) { |
|
254 | 254 | $height_m = $height / 100; |
255 | 255 | } |
256 | 256 | |
257 | - if ( 1 < $weight && 1 < $height_m ) { |
|
258 | - $bmi = $weight / ( $height_m * $height_m ); |
|
259 | - $bmi = number_format( $bmi, 1 ); |
|
257 | + if (1 < $weight && 1 < $height_m) { |
|
258 | + $bmi = $weight / ($height_m * $height_m); |
|
259 | + $bmi = number_format($bmi, 1); |
|
260 | 260 | } else { |
261 | - $bmi = __( 'Add more data', 'lsx-health-plan' ); |
|
261 | + $bmi = __('Add more data', 'lsx-health-plan'); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | ?> |
265 | 265 | |
266 | 266 | <div> |
267 | - <?php if ( 'on' !== $is_weight_disabled ) { ?> |
|
268 | - <span><strong><?php esc_html_e( 'Weight:', 'lsx-health-plan' ); ?></strong> |
|
267 | + <?php if ('on' !== $is_weight_disabled) { ?> |
|
268 | + <span><strong><?php esc_html_e('Weight:', 'lsx-health-plan'); ?></strong> |
|
269 | 269 | <?php |
270 | - if ( '' !== $weight ) { |
|
271 | - echo wp_kses_post( $weight . ' kg' ); |
|
270 | + if ('' !== $weight) { |
|
271 | + echo wp_kses_post($weight . ' kg'); |
|
272 | 272 | } else { |
273 | 273 | echo '/'; |
274 | 274 | } |
275 | 275 | ?> |
276 | 276 | </span> |
277 | 277 | <?php } |
278 | - if ( 'on' !== $is_waist_disabled ) { |
|
278 | + if ('on' !== $is_waist_disabled) { |
|
279 | 279 | ?> |
280 | - <span><strong><?php esc_html_e( 'Waist:', 'lsx-health-plan' ); ?></strong> |
|
280 | + <span><strong><?php esc_html_e('Waist:', 'lsx-health-plan'); ?></strong> |
|
281 | 281 | <?php |
282 | - if ( '' !== $waist ) { |
|
283 | - echo wp_kses_post( $waist . ' cm' ); |
|
282 | + if ('' !== $waist) { |
|
283 | + echo wp_kses_post($waist . ' cm'); |
|
284 | 284 | } else { |
285 | 285 | echo '/'; |
286 | 286 | } |
287 | 287 | ?> |
288 | 288 | </span> |
289 | 289 | <?php } |
290 | - if ( 'on' !== $is_bmi_disabled ) { |
|
290 | + if ('on' !== $is_bmi_disabled) { |
|
291 | 291 | ?> |
292 | - <span><strong><?php esc_html_e( 'BMI:', 'lsx-health-plan' ); ?></strong> |
|
292 | + <span><strong><?php esc_html_e('BMI:', 'lsx-health-plan'); ?></strong> |
|
293 | 293 | <?php |
294 | - if ( '' !== $bmi ) { |
|
295 | - echo wp_kses_post( $bmi ); |
|
294 | + if ('' !== $bmi) { |
|
295 | + echo wp_kses_post($bmi); |
|
296 | 296 | } else { |
297 | 297 | echo '/'; |
298 | 298 | } |
@@ -305,13 +305,13 @@ discard block |
||
305 | 305 | ?> |
306 | 306 | <div class="edit-profile"> |
307 | 307 | <?php |
308 | - if ( function_exists( 'wc_get_page_id' ) ) { |
|
309 | - $url_id = wc_get_page_id( 'myaccount' ); |
|
308 | + if (function_exists('wc_get_page_id')) { |
|
309 | + $url_id = wc_get_page_id('myaccount'); |
|
310 | 310 | } else { |
311 | 311 | $url_id = ''; |
312 | 312 | } |
313 | 313 | ?> |
314 | - <a href="<?php echo esc_url( get_permalink( $url_id ) ); ?>edit-account/"><?php esc_html_e( 'Edit', 'lsx-health-plan' ); ?></a> |
|
314 | + <a href="<?php echo esc_url(get_permalink($url_id)); ?>edit-account/"><?php esc_html_e('Edit', 'lsx-health-plan'); ?></a> |
|
315 | 315 | </div> |
316 | 316 | </div> |
317 | 317 | </section> |
@@ -337,7 +337,7 @@ discard block |
||
337 | 337 | ); |
338 | 338 | |
339 | 339 | $product_ids = \lsx_health_plan\functions\woocommerce\get_membership_products(); |
340 | - if ( ! empty( $product_ids ) ) { |
|
340 | + if ( ! empty($product_ids)) { |
|
341 | 341 | $args['meta_query'] = array( |
342 | 342 | 'relation' => 'OR', |
343 | 343 | array( |
@@ -352,82 +352,82 @@ discard block |
||
352 | 352 | ); |
353 | 353 | } |
354 | 354 | |
355 | - $the_query = new WP_Query( $args ); |
|
355 | + $the_query = new WP_Query($args); |
|
356 | 356 | ?> |
357 | 357 | <div class="all-plans-block plan-grid block-all-plans-block"> |
358 | 358 | <div class="row"> |
359 | 359 | <?php |
360 | - if ( $the_query->have_posts() ) : |
|
361 | - while ( $the_query->have_posts() ) : |
|
360 | + if ($the_query->have_posts()) : |
|
361 | + while ($the_query->have_posts()) : |
|
362 | 362 | $the_query->the_post(); |
363 | 363 | lsx_entry_before(); |
364 | 364 | $completed_class = ''; |
365 | 365 | $linked_product = false; |
366 | 366 | $restricted = false; |
367 | 367 | $product = null; |
368 | - if ( \lsx_health_plan\functions\woocommerce\plan_has_products() ) { |
|
368 | + if (\lsx_health_plan\functions\woocommerce\plan_has_products()) { |
|
369 | 369 | $products = \lsx_health_plan\functions\woocommerce\get_plan_products(); |
370 | - $linked_product = wc_get_product( $products[0] ); |
|
370 | + $linked_product = wc_get_product($products[0]); |
|
371 | 371 | $product = $linked_product; |
372 | 372 | } |
373 | - if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
374 | - $restricted = wc_memberships_is_post_content_restricted( get_the_ID() ) && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
373 | + if (function_exists('wc_memberships_is_post_content_restricted')) { |
|
374 | + $restricted = wc_memberships_is_post_content_restricted(get_the_ID()) && ! current_user_can('wc_memberships_view_restricted_post_content', get_the_ID()); |
|
375 | 375 | } |
376 | 376 | |
377 | - if ( lsx_health_plan_is_plan_complete() ) { |
|
377 | + if (lsx_health_plan_is_plan_complete()) { |
|
378 | 378 | $completed_class = 'completed'; |
379 | 379 | } |
380 | 380 | $round_progress = ''; |
381 | 381 | $completed_progress = '100'; |
382 | - if ( false === $restricted ) { |
|
383 | - $round_progress = round( \lsx_health_plan\functions\get_progress( get_the_ID() ), 0 ); |
|
382 | + if (false === $restricted) { |
|
383 | + $round_progress = round(\lsx_health_plan\functions\get_progress(get_the_ID()), 0); |
|
384 | 384 | } |
385 | 385 | ?> |
386 | 386 | <div class="col-xs-12 col-sm-6 col-md-4"> |
387 | - <article class="lsx-slot lsx-hp-shadow <?php echo esc_html( 'progress-') . $round_progress; ?>"> |
|
387 | + <article class="lsx-slot lsx-hp-shadow <?php echo esc_html('progress-') . $round_progress; ?>"> |
|
388 | 388 | <div class="plan-feature-img"> |
389 | - <?php if ( (int)$completed_progress === (int)$round_progress ) { ?> |
|
390 | - <span class="featured-plan"><?php lsx_get_svg_icon( 'icon-completed.svg' ); ?></span> |
|
389 | + <?php if ((int) $completed_progress === (int) $round_progress) { ?> |
|
390 | + <span class="featured-plan"><?php lsx_get_svg_icon('icon-completed.svg'); ?></span> |
|
391 | 391 | <?php } ?> |
392 | - <a href="<?php echo esc_url( get_permalink() ); ?>"> |
|
392 | + <a href="<?php echo esc_url(get_permalink()); ?>"> |
|
393 | 393 | <?php |
394 | 394 | $featured_image = get_the_post_thumbnail(); |
395 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
396 | - the_post_thumbnail( 'lsx-thumbnail', array( |
|
395 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
396 | + the_post_thumbnail('lsx-thumbnail', array( |
|
397 | 397 | 'class' => 'aligncenter', |
398 | - ) ); |
|
398 | + )); |
|
399 | 399 | } else { |
400 | 400 | ?> |
401 | - <img loading="lazy" class="placeholder" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
|
401 | + <img loading="lazy" class="placeholder" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>"> |
|
402 | 402 | <?php |
403 | 403 | } |
404 | 404 | ?> |
405 | 405 | </a> |
406 | 406 | </div> |
407 | 407 | <div class="content-box plan-content-box"> |
408 | - <h3 class="plan id-<?php the_ID(); ?> <?php echo esc_attr( $completed_class ); ?>"><a href="<?php echo esc_url( get_permalink() ); ?>"><?php the_title(); ?></a></h3> |
|
408 | + <h3 class="plan id-<?php the_ID(); ?> <?php echo esc_attr($completed_class); ?>"><a href="<?php echo esc_url(get_permalink()); ?>"><?php the_title(); ?></a></h3> |
|
409 | 409 | <?php |
410 | - echo wp_kses_post( \lsx_health_plan\functions\hp_get_plan_type_meta( $post ) ); |
|
410 | + echo wp_kses_post(\lsx_health_plan\functions\hp_get_plan_type_meta($post)); |
|
411 | 411 | ?> |
412 | 412 | <?php |
413 | - if ( false !== $linked_product && false !== $restricted ) { |
|
414 | - echo wp_kses_post( $linked_product->get_price_html() ); |
|
413 | + if (false !== $linked_product && false !== $restricted) { |
|
414 | + echo wp_kses_post($linked_product->get_price_html()); |
|
415 | 415 | } |
416 | 416 | ?> |
417 | 417 | <div class="excerpt"> |
418 | 418 | <?php |
419 | - if ( ! has_excerpt() ) { |
|
420 | - $content = wp_trim_words( get_the_content(), 20 ); |
|
419 | + if ( ! has_excerpt()) { |
|
420 | + $content = wp_trim_words(get_the_content(), 20); |
|
421 | 421 | $content = '<p>' . $content . '</pre>'; |
422 | 422 | } else { |
423 | - $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
423 | + $content = apply_filters('the_excerpt', get_the_excerpt()); |
|
424 | 424 | } |
425 | - echo wp_kses_post( $content ); |
|
425 | + echo wp_kses_post($content); |
|
426 | 426 | ?> |
427 | 427 | </div> |
428 | 428 | <?php |
429 | - if ( false === $restricted ) { |
|
430 | - echo wp_kses_post( '<span class="progress"><progress class="bar" value="' . \lsx_health_plan\functions\get_progress( get_the_ID() ) . '" max="100"> ' . \lsx_health_plan\functions\get_progress( get_the_ID() ) . '% </progress><span>' . $round_progress . '%</span></span>' ); |
|
429 | + if (false === $restricted) { |
|
430 | + echo wp_kses_post('<span class="progress"><progress class="bar" value="' . \lsx_health_plan\functions\get_progress(get_the_ID()) . '" max="100"> ' . \lsx_health_plan\functions\get_progress(get_the_ID()) . '% </progress><span>' . $round_progress . '%</span></span>'); |
|
431 | 431 | } |
432 | 432 | ?> |
433 | 433 | </div> |
@@ -447,30 +447,30 @@ discard block |
||
447 | 447 | * |
448 | 448 | * @return void |
449 | 449 | */ |
450 | -function lsx_health_plan_day_plan_block( $args = array() ) { |
|
450 | +function lsx_health_plan_day_plan_block($args = array()) { |
|
451 | 451 | $defaults = array( |
452 | 452 | 'plan' => '', |
453 | 453 | ); |
454 | - $args = wp_parse_args( $args, $defaults ); |
|
454 | + $args = wp_parse_args($args, $defaults); |
|
455 | 455 | |
456 | - if ( isset( $args['plan'] ) && '' !== $args['plan'] && \lsx_health_plan\functions\plan\has_sections( $args['plan'] ) ) { |
|
456 | + if (isset($args['plan']) && '' !== $args['plan'] && \lsx_health_plan\functions\plan\has_sections($args['plan'])) { |
|
457 | 457 | $sections = \lsx_health_plan\functions\plan\get_sections(); |
458 | 458 | ?> |
459 | 459 | <div class="daily-plan-block day-grid"> |
460 | 460 | <?php |
461 | - foreach ( $sections as $section_key => $section_values ) { |
|
462 | - $defaults = array( |
|
463 | - 'title' => __( 'Day', 'lsx-health-plan' ) . ' ' . ( $section_key + 1 ), |
|
461 | + foreach ($sections as $section_key => $section_values) { |
|
462 | + $defaults = array( |
|
463 | + 'title' => __('Day', 'lsx-health-plan') . ' ' . ($section_key + 1), |
|
464 | 464 | ); |
465 | - $section_args = wp_parse_args( $section_values, $defaults ); |
|
465 | + $section_args = wp_parse_args($section_values, $defaults); |
|
466 | 466 | |
467 | 467 | $completed_class = ''; |
468 | - if ( lsx_health_plan_is_day_complete() ) { |
|
468 | + if (lsx_health_plan_is_day_complete()) { |
|
469 | 469 | $completed_class = 'completed'; |
470 | 470 | } |
471 | 471 | ?> |
472 | - <a href="<?php echo esc_attr( \lsx_health_plan\functions\plan\get_permalink( $args['plan'], $section_args['title'] ) ); ?>" class="day id-<?php echo esc_attr( $section_key + 1 ); ?> <?php echo esc_attr( $completed_class ); ?>"> |
|
473 | - <div class="plan-content"><?php echo esc_attr( $section_args['title'] ); ?></div> |
|
472 | + <a href="<?php echo esc_attr(\lsx_health_plan\functions\plan\get_permalink($args['plan'], $section_args['title'])); ?>" class="day id-<?php echo esc_attr($section_key + 1); ?> <?php echo esc_attr($completed_class); ?>"> |
|
473 | + <div class="plan-content"><?php echo esc_attr($section_args['title']); ?></div> |
|
474 | 474 | </a> |
475 | 475 | <?php |
476 | 476 | } |
@@ -486,31 +486,31 @@ discard block |
||
486 | 486 | * @param array $args An array of arguments. |
487 | 487 | * @return void |
488 | 488 | */ |
489 | -function lsx_health_plan_week_plan_block( $args = array() ) { |
|
489 | +function lsx_health_plan_week_plan_block($args = array()) { |
|
490 | 490 | $defaults = array( |
491 | 491 | 'show_downloads' => false, |
492 | 492 | 'plan' => '', |
493 | 493 | ); |
494 | - $args = wp_parse_args( $args, $defaults ); |
|
494 | + $args = wp_parse_args($args, $defaults); |
|
495 | 495 | |
496 | - if ( isset( $args['plan'] ) && '' !== $args['plan'] && \lsx_health_plan\functions\plan\has_sections( $args['plan'] ) ) { |
|
497 | - $groups = \lsx_health_plan\functions\plan\get_sections( true ); |
|
496 | + if (isset($args['plan']) && '' !== $args['plan'] && \lsx_health_plan\functions\plan\has_sections($args['plan'])) { |
|
497 | + $groups = \lsx_health_plan\functions\plan\get_sections(true); |
|
498 | 498 | |
499 | - if ( ! empty( $groups ) ) { |
|
499 | + if ( ! empty($groups)) { |
|
500 | 500 | $counter = 1; |
501 | 501 | $group_open = false; |
502 | 502 | |
503 | - foreach ( $groups as $group_key => $sections ) { |
|
503 | + foreach ($groups as $group_key => $sections) { |
|
504 | 504 | $collapse_class = ''; |
505 | - $group_title = \lsx_health_plan\functions\plan\get_group_title( $sections ); |
|
505 | + $group_title = \lsx_health_plan\functions\plan\get_group_title($sections); |
|
506 | 506 | |
507 | 507 | // Determine if the current week is complete. |
508 | - $day_ids = wp_list_pluck( $sections, 'title' ); |
|
509 | - if ( false === $group_open ) { |
|
510 | - if ( 1 === $counter && ! \lsx_health_plan\functions\is_week_complete( false, $day_ids, $group_title ) ) { |
|
508 | + $day_ids = wp_list_pluck($sections, 'title'); |
|
509 | + if (false === $group_open) { |
|
510 | + if (1 === $counter && ! \lsx_health_plan\functions\is_week_complete(false, $day_ids, $group_title)) { |
|
511 | 511 | $collapse_class = 'in'; |
512 | 512 | $group_open = true; |
513 | - } elseif ( ! \lsx_health_plan\functions\is_week_complete( false, $day_ids, $group_title ) ) { |
|
513 | + } elseif ( ! \lsx_health_plan\functions\is_week_complete(false, $day_ids, $group_title)) { |
|
514 | 514 | $collapse_class = 'in'; |
515 | 515 | $group_open = true; |
516 | 516 | } |
@@ -518,40 +518,40 @@ discard block |
||
518 | 518 | |
519 | 519 | // Determine if there are any weekly downloads. |
520 | 520 | $week_downloads_view = ''; |
521 | - if ( isset( $args['show_downloads'] ) && false !== $args['show_downloads'] ) { |
|
522 | - $weekly_downloads = \lsx_health_plan\functions\get_weekly_downloads( $group_key ); |
|
523 | - if ( ! empty( $weekly_downloads ) ) { |
|
521 | + if (isset($args['show_downloads']) && false !== $args['show_downloads']) { |
|
522 | + $weekly_downloads = \lsx_health_plan\functions\get_weekly_downloads($group_key); |
|
523 | + if ( ! empty($weekly_downloads)) { |
|
524 | 524 | $week_downloads_view = 'week-downloads-view-on'; |
525 | 525 | } |
526 | 526 | } |
527 | 527 | ?> |
528 | 528 | <div class="daily-plan-block week-grid"> |
529 | - <a href="#group-<?php echo esc_attr( $group_key ); ?>" data-toggle="collapse" class="week-title"><?php echo esc_attr( $group_title ); ?></a> |
|
530 | - <div id="group-<?php echo esc_attr( $group_key ); ?>" class="week-row collapse <?php echo esc_attr( $collapse_class ); ?>"> |
|
531 | - <div class="week-row-inner <?php echo esc_html( $week_downloads_view ); ?>"> |
|
529 | + <a href="#group-<?php echo esc_attr($group_key); ?>" data-toggle="collapse" class="week-title"><?php echo esc_attr($group_title); ?></a> |
|
530 | + <div id="group-<?php echo esc_attr($group_key); ?>" class="week-row collapse <?php echo esc_attr($collapse_class); ?>"> |
|
531 | + <div class="week-row-inner <?php echo esc_html($week_downloads_view); ?>"> |
|
532 | 532 | <div class="week-meals-recipes-box"> |
533 | 533 | |
534 | - <?php if ( ! empty( $week_downloads_view ) ) { ?> |
|
535 | - <h3 class="title"><?php lsx_get_svg_icon( 'daily-plan.svg' ); ?><?php echo esc_html_e( 'Plan', 'lsx-health-plan' ); ?></h3> |
|
534 | + <?php if ( ! empty($week_downloads_view)) { ?> |
|
535 | + <h3 class="title"><?php lsx_get_svg_icon('daily-plan.svg'); ?><?php echo esc_html_e('Plan', 'lsx-health-plan'); ?></h3> |
|
536 | 536 | <?php } ?> |
537 | 537 | |
538 | 538 | <div class="week-meals-recipes-box-inner"> |
539 | 539 | <?php |
540 | 540 | |
541 | - foreach ( $sections as $section_key => $section_values ) { |
|
541 | + foreach ($sections as $section_key => $section_values) { |
|
542 | 542 | |
543 | - $defaults = array( |
|
544 | - 'title' => __( 'Day', 'lsx-health-plan' ) . ' ' . ( $section_key + 1 ), |
|
543 | + $defaults = array( |
|
544 | + 'title' => __('Day', 'lsx-health-plan') . ' ' . ($section_key + 1), |
|
545 | 545 | ); |
546 | - $section_args = wp_parse_args( $section_values, $defaults ); |
|
546 | + $section_args = wp_parse_args($section_values, $defaults); |
|
547 | 547 | |
548 | 548 | $completed_class = ''; |
549 | - if ( lsx_health_plan_is_day_complete( $args['plan'], $section_args['title'] ) ) { |
|
549 | + if (lsx_health_plan_is_day_complete($args['plan'], $section_args['title'])) { |
|
550 | 550 | $completed_class = 'completed'; |
551 | 551 | } |
552 | 552 | ?> |
553 | - <a href="<?php echo esc_attr( \lsx_health_plan\functions\plan\get_permalink( $args['plan'], $section_args['title'] ) ); ?>" class="day id-<?php echo esc_attr( $section_key + 1 ); ?> <?php echo esc_attr( $completed_class ); ?>"> |
|
554 | - <div class="plan-content"><?php echo esc_attr( $section_args['title'] ); ?></div> |
|
553 | + <a href="<?php echo esc_attr(\lsx_health_plan\functions\plan\get_permalink($args['plan'], $section_args['title'])); ?>" class="day id-<?php echo esc_attr($section_key + 1); ?> <?php echo esc_attr($completed_class); ?>"> |
|
554 | + <div class="plan-content"><?php echo esc_attr($section_args['title']); ?></div> |
|
555 | 555 | </a> |
556 | 556 | <?php |
557 | 557 | } |
@@ -559,8 +559,8 @@ discard block |
||
559 | 559 | </div> |
560 | 560 | </div> |
561 | 561 | <?php |
562 | - if ( ! empty( $week_downloads_view ) ) { |
|
563 | - lsx_health_plan_weekly_downloads( $weekly_downloads ); |
|
562 | + if ( ! empty($week_downloads_view)) { |
|
563 | + lsx_health_plan_weekly_downloads($weekly_downloads); |
|
564 | 564 | } |
565 | 565 | ?> |
566 | 566 | </div> |
@@ -578,16 +578,16 @@ discard block |
||
578 | 578 | * @param array $weekly_downloads An array of the download ids. |
579 | 579 | * @return void |
580 | 580 | */ |
581 | -function lsx_health_plan_weekly_downloads( $weekly_downloads = array() ) { |
|
582 | - if ( ! empty( $weekly_downloads ) ) { |
|
581 | +function lsx_health_plan_weekly_downloads($weekly_downloads = array()) { |
|
582 | + if ( ! empty($weekly_downloads)) { |
|
583 | 583 | ?> |
584 | 584 | <div class="week-download-box"> |
585 | - <h3 class="title"><?php lsx_get_svg_icon( 'download.svg' ); ?><?php echo esc_html_e( 'Downloads', 'lsx-health-plan' ); ?></h3> |
|
585 | + <h3 class="title"><?php lsx_get_svg_icon('download.svg'); ?><?php echo esc_html_e('Downloads', 'lsx-health-plan'); ?></h3> |
|
586 | 586 | <ul class="week-download-box-list"> |
587 | 587 | <?php |
588 | - foreach ( $weekly_downloads as $weekly_download ) { |
|
588 | + foreach ($weekly_downloads as $weekly_download) { |
|
589 | 589 | ?> |
590 | - <li><?php echo wp_kses_post( do_shortcode( '[download id="' . $weekly_download . '"]' ) ); ?></li> |
|
590 | + <li><?php echo wp_kses_post(do_shortcode('[download id="' . $weekly_download . '"]')); ?></li> |
|
591 | 591 | <?php |
592 | 592 | } |
593 | 593 | ?> |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | * |
603 | 603 | * @return void |
604 | 604 | */ |
605 | -function lsx_health_plan_items( $args = array() ) { |
|
605 | +function lsx_health_plan_items($args = array()) { |
|
606 | 606 | global $shortcode_args; |
607 | 607 | $shortcode_args = $args; |
608 | 608 | include LSX_HEALTH_PLAN_PATH . '/templates/partials/shortcode-loop.php'; |
@@ -614,7 +614,7 @@ discard block |
||
614 | 614 | * @return void |
615 | 615 | */ |
616 | 616 | function lsx_health_plan_featured_video_block() { |
617 | - if ( ! post_type_exists( 'video' ) ) { |
|
617 | + if ( ! post_type_exists('video')) { |
|
618 | 618 | return; |
619 | 619 | } |
620 | 620 | include LSX_HEALTH_PLAN_PATH . '/templates/featured-videos.php'; |
@@ -626,7 +626,7 @@ discard block |
||
626 | 626 | * @return void |
627 | 627 | */ |
628 | 628 | function lsx_health_plan_featured_recipes_block() { |
629 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
629 | + if ( ! post_type_exists('recipe')) { |
|
630 | 630 | return; |
631 | 631 | } |
632 | 632 | include LSX_HEALTH_PLAN_PATH . '/templates/featured-recipes.php'; |
@@ -648,7 +648,7 @@ discard block |
||
648 | 648 | * @return void |
649 | 649 | */ |
650 | 650 | function lsx_health_plan_day_button() { |
651 | - if ( lsx_health_plan_is_day_complete() ) { |
|
651 | + if (lsx_health_plan_is_day_complete()) { |
|
652 | 652 | lsx_health_plan_unlock_button(); |
653 | 653 | } else { |
654 | 654 | lsx_health_plan_complete_button(); |
@@ -664,9 +664,9 @@ discard block |
||
664 | 664 | ?> |
665 | 665 | <div class="single-plan-inner-buttons"> |
666 | 666 | <form action="<?php the_permalink(); ?>" method="post" class="form-complete-day complete-plan-btn"> |
667 | - <?php wp_nonce_field( 'complete', 'lsx-health-plan-actions' ); ?> |
|
668 | - <input type="hidden" name="lsx-health-plan-id" value="<?php echo esc_attr( \lsx_health_plan\functions\plan\generate_section_id() ); ?>" /> |
|
669 | - <button class="btn cta-btn" type="submit"><?php esc_html_e( 'Complete Day', 'lsx-health-plan' ); ?></button> |
|
667 | + <?php wp_nonce_field('complete', 'lsx-health-plan-actions'); ?> |
|
668 | + <input type="hidden" name="lsx-health-plan-id" value="<?php echo esc_attr(\lsx_health_plan\functions\plan\generate_section_id()); ?>" /> |
|
669 | + <button class="btn cta-btn" type="submit"><?php esc_html_e('Complete Day', 'lsx-health-plan'); ?></button> |
|
670 | 670 | </form> |
671 | 671 | <?php lsx_health_plan_back_to_plan_button(); ?> |
672 | 672 | </div> |
@@ -682,9 +682,9 @@ discard block |
||
682 | 682 | ?> |
683 | 683 | <div class="single-plan-inner-buttons"> |
684 | 684 | <form action="<?php the_permalink(); ?>" method="post" class="form-complete-day complete-plan-btn"> |
685 | - <?php wp_nonce_field( 'unlock', 'lsx-health-plan-actions' ); ?> |
|
686 | - <input type="hidden" name="lsx-health-plan-id" value="<?php echo esc_attr( \lsx_health_plan\functions\plan\generate_section_id() ); ?>" /> |
|
687 | - <button class="btn secondary-btn" type="submit"><?php esc_html_e( 'Im not done!', 'lsx-health-plan' ); ?></button> |
|
685 | + <?php wp_nonce_field('unlock', 'lsx-health-plan-actions'); ?> |
|
686 | + <input type="hidden" name="lsx-health-plan-id" value="<?php echo esc_attr(\lsx_health_plan\functions\plan\generate_section_id()); ?>" /> |
|
687 | + <button class="btn secondary-btn" type="submit"><?php esc_html_e('Im not done!', 'lsx-health-plan'); ?></button> |
|
688 | 688 | </form> |
689 | 689 | <?php lsx_health_plan_back_to_plan_button(); ?> |
690 | 690 | </div> |
@@ -698,8 +698,8 @@ discard block |
||
698 | 698 | * @return void |
699 | 699 | */ |
700 | 700 | function lsx_health_plan_single_nav() { |
701 | - $tab_template_path = apply_filters( 'lsx_health_plan_single_nav_path', LSX_HEALTH_PLAN_PATH . '/templates/single-plan-tabs.php' ); |
|
702 | - if ( '' !== $tab_template_path ) { |
|
701 | + $tab_template_path = apply_filters('lsx_health_plan_single_nav_path', LSX_HEALTH_PLAN_PATH . '/templates/single-plan-tabs.php'); |
|
702 | + if ('' !== $tab_template_path) { |
|
703 | 703 | require $tab_template_path; |
704 | 704 | } |
705 | 705 | } |
@@ -711,8 +711,8 @@ discard block |
||
711 | 711 | * @return void |
712 | 712 | */ |
713 | 713 | function lsx_health_plan_single_tabs() { |
714 | - $endpoint = get_query_var( 'endpoint' ); |
|
715 | - switch ( $endpoint ) { |
|
714 | + $endpoint = get_query_var('endpoint'); |
|
715 | + switch ($endpoint) { |
|
716 | 716 | case 'meal': |
717 | 717 | $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-meal.php'; |
718 | 718 | break; |
@@ -733,8 +733,8 @@ discard block |
||
733 | 733 | $tab_template_path = LSX_HEALTH_PLAN_PATH . '/templates/tab-content-plan.php'; |
734 | 734 | break; |
735 | 735 | } |
736 | - $tab_template_path = apply_filters( 'lsx_health_plan_single_tab_path', $tab_template_path ); |
|
737 | - if ( '' !== $tab_template_path ) { |
|
736 | + $tab_template_path = apply_filters('lsx_health_plan_single_tab_path', $tab_template_path); |
|
737 | + if ('' !== $tab_template_path) { |
|
738 | 738 | include $tab_template_path; |
739 | 739 | } |
740 | 740 | } |
@@ -754,9 +754,9 @@ discard block |
||
754 | 754 | * @return recipe_type |
755 | 755 | */ |
756 | 756 | function lsx_health_plan_recipe_type() { |
757 | - $term_obj_list = get_the_terms( get_the_ID(), 'recipe-type' ); |
|
757 | + $term_obj_list = get_the_terms(get_the_ID(), 'recipe-type'); |
|
758 | 758 | $recipe_type = $term_obj_list[0]->name; |
759 | - if ( ! empty( $recipe_type ) ) { |
|
759 | + if ( ! empty($recipe_type)) { |
|
760 | 760 | return $recipe_type; |
761 | 761 | } |
762 | 762 | } |
@@ -768,32 +768,32 @@ discard block |
||
768 | 768 | * @param array $group |
769 | 769 | * @return void |
770 | 770 | */ |
771 | -function lsx_health_plan_workout_video_play_button( $m, $group, $echo = true ) { |
|
771 | +function lsx_health_plan_workout_video_play_button($m, $group, $echo = true) { |
|
772 | 772 | $workout_video = ''; |
773 | 773 | $giphy = ''; |
774 | 774 | $youtube = ''; |
775 | - if ( isset( $group['connected_videos'] ) && '' !== $group['connected_videos'] ) { |
|
776 | - $workout_video = esc_html( $group['connected_videos'] ); |
|
777 | - $giphy = get_post_meta( $workout_video, 'video_giphy_source', true ); |
|
778 | - $youtube = esc_url( get_post_meta( $workout_video, 'video_youtube_source', 1 ) ); |
|
779 | - $content = get_post_field( 'post_content', $workout_video ); |
|
775 | + if (isset($group['connected_videos']) && '' !== $group['connected_videos']) { |
|
776 | + $workout_video = esc_html($group['connected_videos']); |
|
777 | + $giphy = get_post_meta($workout_video, 'video_giphy_source', true); |
|
778 | + $youtube = esc_url(get_post_meta($workout_video, 'video_youtube_source', 1)); |
|
779 | + $content = get_post_field('post_content', $workout_video); |
|
780 | 780 | $play_button = '<button data-toggle="modal" data-target="#workout-video-modal-' . $m . '"><span class="fa fa-play-circle"></span></button>'; |
781 | 781 | |
782 | 782 | $modal_body = ''; |
783 | - if ( ! empty( $giphy ) ) { |
|
784 | - $giphy = \lsx_health_plan\functions\get_video_url( $giphy ); |
|
783 | + if ( ! empty($giphy)) { |
|
784 | + $giphy = \lsx_health_plan\functions\get_video_url($giphy); |
|
785 | 785 | $modal_body = $giphy; // WPCS: XSS OK. |
786 | - } elseif ( ! empty( $youtube ) ) { |
|
787 | - $modal_body = wp_oembed_get( $youtube, array( // WPCS: XSS OK. |
|
786 | + } elseif ( ! empty($youtube)) { |
|
787 | + $modal_body = wp_oembed_get($youtube, array( // WPCS: XSS OK. |
|
788 | 788 | 'width' => 480, |
789 | - ) ); |
|
789 | + )); |
|
790 | 790 | } |
791 | 791 | $modal_body .= '<h5 class="modal-title title-lined">' . $group['name'] . '</h5>'; |
792 | 792 | $modal_body .= $content; |
793 | - \lsx_health_plan\functions\register_modal( 'workout-video-modal-' . $m, '', $modal_body ); |
|
793 | + \lsx_health_plan\functions\register_modal('workout-video-modal-' . $m, '', $modal_body); |
|
794 | 794 | |
795 | - if ( true === $echo ) { |
|
796 | - echo wp_kses_post( $play_button ); |
|
795 | + if (true === $echo) { |
|
796 | + echo wp_kses_post($play_button); |
|
797 | 797 | } else { |
798 | 798 | return $play_button; |
799 | 799 | } |
@@ -807,17 +807,17 @@ discard block |
||
807 | 807 | */ |
808 | 808 | function lsx_health_plan_recipe_archive_description() { |
809 | 809 | $description = ''; |
810 | - if ( is_post_type_archive( 'recipe' ) ) { |
|
811 | - $description = \lsx_health_plan\functions\get_option( 'recipe_archive_description', '' ); |
|
812 | - } elseif ( is_post_type_archive( 'exercise' ) ) { |
|
813 | - $description = \lsx_health_plan\functions\get_option( 'exercise_archive_description', '' ); |
|
814 | - } elseif ( is_tax() ) { |
|
810 | + if (is_post_type_archive('recipe')) { |
|
811 | + $description = \lsx_health_plan\functions\get_option('recipe_archive_description', ''); |
|
812 | + } elseif (is_post_type_archive('exercise')) { |
|
813 | + $description = \lsx_health_plan\functions\get_option('exercise_archive_description', ''); |
|
814 | + } elseif (is_tax()) { |
|
815 | 815 | $description = get_the_archive_description(); |
816 | 816 | } |
817 | - if ( '' !== $description ) { |
|
817 | + if ('' !== $description) { |
|
818 | 818 | ?> |
819 | 819 | <div class="lsx-hp-archive-description row"> |
820 | - <div class="col-xs-12 description-wrapper"><?php echo wp_kses_post( wpautop( $description ) ); ?></div> |
|
820 | + <div class="col-xs-12 description-wrapper"><?php echo wp_kses_post(wpautop($description)); ?></div> |
|
821 | 821 | </div> |
822 | 822 | <?php |
823 | 823 | } |
@@ -830,19 +830,19 @@ discard block |
||
830 | 830 | */ |
831 | 831 | function lsx_health_plan_workout_main_content() { |
832 | 832 | // Getting translated endpoint. |
833 | - $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ); |
|
833 | + $workout = \lsx_health_plan\functions\get_option('endpoint_workout', 'workout'); |
|
834 | 834 | |
835 | - $connected_members = get_post_meta( get_the_ID(), ( $workout . '_connected_team_member' ), true ); |
|
836 | - $small_description = get_post_meta( get_the_ID(), ( $workout . '_short_description' ), true ); |
|
835 | + $connected_members = get_post_meta(get_the_ID(), ($workout . '_connected_team_member'), true); |
|
836 | + $small_description = get_post_meta(get_the_ID(), ($workout . '_short_description'), true); |
|
837 | 837 | |
838 | 838 | $content = ''; |
839 | - if ( $small_description || $connected_members || lsx_health_plan_has_tips() ) { |
|
839 | + if ($small_description || $connected_members || lsx_health_plan_has_tips()) { |
|
840 | 840 | $content .= '<div class="set-box set content-box entry-content">'; |
841 | 841 | $content .= '<div class="the-content">'; |
842 | - $content .= lsx_hp_member_connected( $connected_members, $workout ); |
|
842 | + $content .= lsx_hp_member_connected($connected_members, $workout); |
|
843 | 843 | $content .= '<span>' . $small_description . '</span>'; |
844 | 844 | $content .= '</div>'; |
845 | - $content .= do_shortcode( '[lsx_health_plan_featured_tips_block]' ); |
|
845 | + $content .= do_shortcode('[lsx_health_plan_featured_tips_block]'); |
|
846 | 846 | $content .= '</div>'; |
847 | 847 | } |
848 | 848 | return $content; |
@@ -855,19 +855,19 @@ discard block |
||
855 | 855 | */ |
856 | 856 | function lsx_health_plan_meal_main_content() { |
857 | 857 | // Getting translated endpoint. |
858 | - $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', 'meal' ); |
|
858 | + $meal = \lsx_health_plan\functions\get_option('endpoint_meal', 'meal'); |
|
859 | 859 | |
860 | - $connected_members = get_post_meta( get_the_ID(), ( $meal . '_connected_team_member' ), true ); |
|
861 | - $small_description = get_post_meta( get_the_ID(), ( $meal . '_short_description' ), true ); |
|
860 | + $connected_members = get_post_meta(get_the_ID(), ($meal . '_connected_team_member'), true); |
|
861 | + $small_description = get_post_meta(get_the_ID(), ($meal . '_short_description'), true); |
|
862 | 862 | |
863 | 863 | $content_meal = ''; |
864 | - if ( $small_description || $connected_members || lsx_health_plan_has_tips() ) { |
|
864 | + if ($small_description || $connected_members || lsx_health_plan_has_tips()) { |
|
865 | 865 | $content_meal .= '<div class="set-box set content-box entry-content">'; |
866 | 866 | $content_meal .= '<div class="the-content">'; |
867 | - $content_meal .= lsx_hp_member_connected( $connected_members, $meal ); |
|
867 | + $content_meal .= lsx_hp_member_connected($connected_members, $meal); |
|
868 | 868 | $content_meal .= '<span>' . $small_description . '</span>'; |
869 | 869 | $content_meal .= '</div>'; |
870 | - $content_meal .= do_shortcode( '[lsx_health_plan_featured_tips_block]' ); |
|
870 | + $content_meal .= do_shortcode('[lsx_health_plan_featured_tips_block]'); |
|
871 | 871 | $content_meal .= '</div>'; |
872 | 872 | } |
873 | 873 | return $content_meal; |
@@ -880,21 +880,21 @@ discard block |
||
880 | 880 | * @param string $index |
881 | 881 | * @return void |
882 | 882 | */ |
883 | -function lsx_health_plan_workout_tab_content( $index = 1 ) { |
|
884 | - global $group_name,$shortcode_args; |
|
883 | +function lsx_health_plan_workout_tab_content($index = 1) { |
|
884 | + global $group_name, $shortcode_args; |
|
885 | 885 | $group_name = 'workout_section_' . $index; |
886 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
887 | - $layout = strtolower( \lsx_health_plan\functions\get_option( 'workout_tab_layout', 'table' ) ); |
|
886 | + if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) { |
|
887 | + $layout = strtolower(\lsx_health_plan\functions\get_option('workout_tab_layout', 'table')); |
|
888 | 888 | |
889 | 889 | // Check for shortcode overrides. |
890 | - if ( null !== $shortcode_args && isset( $shortcode_args['layout'] ) ) { |
|
890 | + if (null !== $shortcode_args && isset($shortcode_args['layout'])) { |
|
891 | 891 | $layout = $shortcode_args['layout']; |
892 | 892 | } |
893 | 893 | } else { |
894 | 894 | $layout = 'table'; |
895 | 895 | } |
896 | 896 | |
897 | - switch ( $layout ) { |
|
897 | + switch ($layout) { |
|
898 | 898 | case 'list': |
899 | 899 | $tab_template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-list.php'; |
900 | 900 | break; |
@@ -907,8 +907,8 @@ discard block |
||
907 | 907 | $tab_template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-table.php'; |
908 | 908 | break; |
909 | 909 | } |
910 | - $tab_template_path = apply_filters( 'lsx_health_plan_workout_tab_content_path', $tab_template_path ); |
|
911 | - if ( '' !== $tab_template_path ) { |
|
910 | + $tab_template_path = apply_filters('lsx_health_plan_workout_tab_content_path', $tab_template_path); |
|
911 | + if ('' !== $tab_template_path) { |
|
912 | 912 | include $tab_template_path; |
913 | 913 | } |
914 | 914 | } |
@@ -919,26 +919,26 @@ discard block |
||
919 | 919 | * @return void |
920 | 920 | */ |
921 | 921 | function lsx_health_plan_workout_sets() { |
922 | - if ( is_singular( 'workout' ) ) { |
|
922 | + if (is_singular('workout')) { |
|
923 | 923 | global $connected_workouts; |
924 | - $connected_workouts = array( get_the_ID() ); |
|
924 | + $connected_workouts = array(get_the_ID()); |
|
925 | 925 | } |
926 | - if ( is_singular( 'plan' ) ) { |
|
926 | + if (is_singular('plan')) { |
|
927 | 927 | |
928 | 928 | global $connected_workouts; |
929 | 929 | |
930 | - $section_key = get_query_var( 'section' ); |
|
931 | - if ( '' !== $section && \lsx_health_plan\functions\plan\has_sections() ) { |
|
932 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
933 | - if ( isset( $section_info['connected_workouts'] ) && '' !== $section_info['connected_workouts'] ) { |
|
930 | + $section_key = get_query_var('section'); |
|
931 | + if ('' !== $section && \lsx_health_plan\functions\plan\has_sections()) { |
|
932 | + $section_info = \lsx_health_plan\functions\plan\get_section_info($section_key); |
|
933 | + if (isset($section_info['connected_workouts']) && '' !== $section_info['connected_workouts']) { |
|
934 | 934 | |
935 | - $connected_workouts = \lsx_health_plan\functions\prep_array( $section_info['connected_workouts'] ); |
|
935 | + $connected_workouts = \lsx_health_plan\functions\prep_array($section_info['connected_workouts']); |
|
936 | 936 | } |
937 | 937 | } |
938 | 938 | } |
939 | 939 | $template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-sets.php'; |
940 | - $template_path = apply_filters( 'lsx_health_plan_workout_set_template_path', $template_path ); |
|
941 | - if ( '' !== $template_path && ! empty( $template_path ) ) { |
|
940 | + $template_path = apply_filters('lsx_health_plan_workout_set_template_path', $template_path); |
|
941 | + if ('' !== $template_path && ! empty($template_path)) { |
|
942 | 942 | include $template_path; |
943 | 943 | } |
944 | 944 | } |
@@ -949,11 +949,11 @@ discard block |
||
949 | 949 | * @param [type] $connected_workouts |
950 | 950 | * @return void |
951 | 951 | */ |
952 | -function lsx_health_plan_warmup_sets( $connected_workouts ) { |
|
952 | +function lsx_health_plan_warmup_sets($connected_workouts) { |
|
953 | 953 | |
954 | 954 | $template_path = LSX_HEALTH_PLAN_PATH . 'templates/partials/workout-sets.php'; |
955 | - $template_path = apply_filters( 'lsx_health_plan_workout_set_template_path', $template_path ); |
|
956 | - if ( '' !== $template_path && ! empty( $template_path ) ) { |
|
955 | + $template_path = apply_filters('lsx_health_plan_workout_set_template_path', $template_path); |
|
956 | + if ('' !== $template_path && ! empty($template_path)) { |
|
957 | 957 | include $template_path; |
958 | 958 | } |
959 | 959 | } |
@@ -964,46 +964,46 @@ discard block |
||
964 | 964 | * @param array $args |
965 | 965 | * @return void |
966 | 966 | */ |
967 | -function lsx_hp_meal_plan_recipes( $args = array() ) { |
|
967 | +function lsx_hp_meal_plan_recipes($args = array()) { |
|
968 | 968 | $defaults = array( |
969 | 969 | 'meal_id' => false, |
970 | 970 | 'meal_time' => '', |
971 | 971 | 'modal' => true, |
972 | 972 | ); |
973 | - $args = wp_parse_args( $args, $defaults ); |
|
973 | + $args = wp_parse_args($args, $defaults); |
|
974 | 974 | // Looking for recipes. |
975 | - $connected_recipes = get_post_meta( $args['meal_id'], $args['meal_time'] . '_recipes', true ); |
|
976 | - if ( ! empty( $connected_recipes ) ) { |
|
977 | - $query_args = array( |
|
975 | + $connected_recipes = get_post_meta($args['meal_id'], $args['meal_time'] . '_recipes', true); |
|
976 | + if ( ! empty($connected_recipes)) { |
|
977 | + $query_args = array( |
|
978 | 978 | 'orderby' => 'date', |
979 | 979 | 'order' => 'DESC', |
980 | 980 | 'post_type' => 'recipe', |
981 | 981 | 'post__in' => $connected_recipes, |
982 | 982 | ); |
983 | - $recipes = new WP_Query( $query_args ); |
|
983 | + $recipes = new WP_Query($query_args); |
|
984 | 984 | ?> |
985 | 985 | <div class="recipes"> |
986 | 986 | <div class="row eating-row"> |
987 | 987 | <?php |
988 | - if ( $recipes->have_posts() ) { |
|
989 | - while ( $recipes->have_posts() ) { |
|
988 | + if ($recipes->have_posts()) { |
|
989 | + while ($recipes->have_posts()) { |
|
990 | 990 | $recipes->the_post(); |
991 | - if ( false !== $args['modal'] ) { |
|
991 | + if (false !== $args['modal']) { |
|
992 | 992 | \lsx_health_plan\functions\recipes\register_recipe_modal(); |
993 | 993 | } |
994 | 994 | ?> |
995 | 995 | <div class="recipe-column"> |
996 | - <a data-toggle="modal" data-target="#recipe-modal-<?php echo esc_attr( get_the_ID() ); ?>" href="#recipe-modal-<?php echo esc_attr( get_the_ID() ); ?>" class="recipe-box box-shadow"> |
|
996 | + <a data-toggle="modal" data-target="#recipe-modal-<?php echo esc_attr(get_the_ID()); ?>" href="#recipe-modal-<?php echo esc_attr(get_the_ID()); ?>" class="recipe-box box-shadow"> |
|
997 | 997 | <div class="recipe-feature-img"> |
998 | 998 | <?php |
999 | 999 | $featured_image = get_the_post_thumbnail(); |
1000 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
1001 | - the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
1000 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
1001 | + the_post_thumbnail('lsx-thumbnail-square', array( |
|
1002 | 1002 | 'class' => 'aligncenter', |
1003 | - ) ); |
|
1003 | + )); |
|
1004 | 1004 | } else { |
1005 | 1005 | ?> |
1006 | - <img loading="lazy" class="placeholder" src="<?php echo esc_attr( plugin_dir_url( __DIR__ ) . 'assets/images/placeholder.jpg' ); ?>"> |
|
1006 | + <img loading="lazy" class="placeholder" src="<?php echo esc_attr(plugin_dir_url(__DIR__) . 'assets/images/placeholder.jpg'); ?>"> |
|
1007 | 1007 | <?php |
1008 | 1008 | } |
1009 | 1009 | ?> |
@@ -1029,25 +1029,25 @@ discard block |
||
1029 | 1029 | /** |
1030 | 1030 | * Output the connected. |
1031 | 1031 | */ |
1032 | -function lsx_hp_recipe_plan_meta( $args = array() ) { |
|
1032 | +function lsx_hp_recipe_plan_meta($args = array()) { |
|
1033 | 1033 | $defaults = array(); |
1034 | 1034 | $top_level_plans = array(); |
1035 | 1035 | // Get meals this exercise is connected to. |
1036 | - $plans = get_post_meta( get_the_ID(), 'connected_plans', true ); |
|
1037 | - if ( ! empty( $plans ) ) { |
|
1038 | - $plan = end( $plans ); |
|
1039 | - $has_parent = wp_get_post_parent_id( $plan ); |
|
1040 | - if ( 0 === $has_parent ) { |
|
1036 | + $plans = get_post_meta(get_the_ID(), 'connected_plans', true); |
|
1037 | + if ( ! empty($plans)) { |
|
1038 | + $plan = end($plans); |
|
1039 | + $has_parent = wp_get_post_parent_id($plan); |
|
1040 | + if (0 === $has_parent) { |
|
1041 | 1041 | $top_level_plans[] = $plan; |
1042 | - } elseif ( false !== $top_level_plans ) { |
|
1042 | + } elseif (false !== $top_level_plans) { |
|
1043 | 1043 | $top_level_plans[] = $has_parent; |
1044 | 1044 | } |
1045 | 1045 | } |
1046 | - if ( ! empty( $top_level_plans ) && ( '' !== $top_level_plans ) ) { |
|
1047 | - $top_level_plans = array_unique( $top_level_plans ); |
|
1048 | - $top_level_plan = end( $top_level_plans ); |
|
1046 | + if ( ! empty($top_level_plans) && ('' !== $top_level_plans)) { |
|
1047 | + $top_level_plans = array_unique($top_level_plans); |
|
1048 | + $top_level_plan = end($top_level_plans); |
|
1049 | 1049 | ?> |
1050 | - <span class="recipe-type recipe-parent"><?php echo esc_html( get_the_title( $top_level_plan ) ); ?></span> |
|
1050 | + <span class="recipe-type recipe-parent"><?php echo esc_html(get_the_title($top_level_plan)); ?></span> |
|
1051 | 1051 | <?php |
1052 | 1052 | } |
1053 | 1053 | } |
@@ -1060,23 +1060,23 @@ discard block |
||
1060 | 1060 | $top_level_plans = array(); |
1061 | 1061 | |
1062 | 1062 | // Get workouts this exercise is connected to. |
1063 | - $workouts = get_post_meta( get_the_ID(), 'connected_workouts', true ); |
|
1063 | + $workouts = get_post_meta(get_the_ID(), 'connected_workouts', true); |
|
1064 | 1064 | |
1065 | - if ( '' !== $workouts && ! is_array( $workouts ) ) { |
|
1066 | - $workouts = array( $workouts ); |
|
1065 | + if ('' !== $workouts && ! is_array($workouts)) { |
|
1066 | + $workouts = array($workouts); |
|
1067 | 1067 | } |
1068 | - if ( ! empty( $workouts ) ) { |
|
1069 | - foreach ( $workouts as $workout ) { |
|
1068 | + if ( ! empty($workouts)) { |
|
1069 | + foreach ($workouts as $workout) { |
|
1070 | 1070 | // Get the plans this workout is connected to. |
1071 | - $plans = get_post_meta( $workout, 'connected_plans', true ); |
|
1071 | + $plans = get_post_meta($workout, 'connected_plans', true); |
|
1072 | 1072 | |
1073 | - if ( '' !== $plans && ! is_array( $plans ) ) { |
|
1074 | - $plans = array( $plans ); |
|
1073 | + if ('' !== $plans && ! is_array($plans)) { |
|
1074 | + $plans = array($plans); |
|
1075 | 1075 | } |
1076 | - if ( ! empty( $plans ) ) { |
|
1077 | - foreach ( $plans as $plan ) { |
|
1078 | - $has_parent = wp_get_post_parent_id( $plan ); |
|
1079 | - if ( 0 === $has_parent ) { |
|
1076 | + if ( ! empty($plans)) { |
|
1077 | + foreach ($plans as $plan) { |
|
1078 | + $has_parent = wp_get_post_parent_id($plan); |
|
1079 | + if (0 === $has_parent) { |
|
1080 | 1080 | $top_level_plans = $plan; |
1081 | 1081 | } else { |
1082 | 1082 | $top_level_plans = $has_parent; |
@@ -1086,11 +1086,11 @@ discard block |
||
1086 | 1086 | } |
1087 | 1087 | } |
1088 | 1088 | |
1089 | - if ( ! empty( $top_level_plans ) && ( '' !== $top_level_plans ) ) { |
|
1090 | - $top_level_plans = array_unique( $top_level_plans ); |
|
1091 | - $top_level_plan = end( $top_level_plans ); |
|
1089 | + if ( ! empty($top_level_plans) && ('' !== $top_level_plans)) { |
|
1090 | + $top_level_plans = array_unique($top_level_plans); |
|
1091 | + $top_level_plan = end($top_level_plans); |
|
1092 | 1092 | ?> |
1093 | - <span class="recipe-type recipe-parent"><?php echo esc_html( get_the_title( $top_level_plan ) ); ?></span> |
|
1093 | + <span class="recipe-type recipe-parent"><?php echo esc_html(get_the_title($top_level_plan)); ?></span> |
|
1094 | 1094 | <?php |
1095 | 1095 | } |
1096 | 1096 | } |
@@ -1101,12 +1101,12 @@ discard block |
||
1101 | 1101 | * @param [type] $related_content |
1102 | 1102 | * @return void |
1103 | 1103 | */ |
1104 | -function lsx_hp_single_related( $related_content, $post_type_text ) { |
|
1104 | +function lsx_hp_single_related($related_content, $post_type_text) { |
|
1105 | 1105 | ?> |
1106 | 1106 | <section id="lsx-hp-related"> |
1107 | 1107 | <div class="row lsx-related-posts lsx-related-posts-title"> |
1108 | 1108 | <div class="col-xs-12"> |
1109 | - <h2 class="lsx-related-posts-headline"><?php echo esc_html( $post_type_text ); ?></h2> |
|
1109 | + <h2 class="lsx-related-posts-headline"><?php echo esc_html($post_type_text); ?></h2> |
|
1110 | 1110 | </div> |
1111 | 1111 | </div> |
1112 | 1112 | <div class="row lsx-related-posts lsx-related-posts-content"> |
@@ -1114,26 +1114,26 @@ discard block |
||
1114 | 1114 | <div class="lsx-related-posts-wrapper"> |
1115 | 1115 | <?php |
1116 | 1116 | $i = 0; |
1117 | - foreach ( $related_content as $article ) { |
|
1118 | - $post_title = get_the_title( $article ); |
|
1119 | - $post_categories = wp_get_post_categories( $article ); |
|
1120 | - $post_link = get_permalink( $article ); |
|
1117 | + foreach ($related_content as $article) { |
|
1118 | + $post_title = get_the_title($article); |
|
1119 | + $post_categories = wp_get_post_categories($article); |
|
1120 | + $post_link = get_permalink($article); |
|
1121 | 1121 | |
1122 | 1122 | $cats = array(); |
1123 | 1123 | ?> |
1124 | - <article id="post-<?php echo esc_html( $article ); ?>" class="lsx-slot post"> |
|
1124 | + <article id="post-<?php echo esc_html($article); ?>" class="lsx-slot post"> |
|
1125 | 1125 | <div class="entry-layout lsx-hp-shadow"> |
1126 | 1126 | <div class="entry-layout-content"> |
1127 | 1127 | <header class="entry-header"> |
1128 | 1128 | <div class="entry-image"> |
1129 | - <a href="<?php echo esc_url( $post_link ); ?>" class="thumbnail"> |
|
1129 | + <a href="<?php echo esc_url($post_link); ?>" class="thumbnail"> |
|
1130 | 1130 | <?php |
1131 | - $featured_image = get_the_post_thumbnail( $article, 'lsx-thumbnail-wide' ); |
|
1132 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
1133 | - echo wp_kses_post( $featured_image ); |
|
1131 | + $featured_image = get_the_post_thumbnail($article, 'lsx-thumbnail-wide'); |
|
1132 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
1133 | + echo wp_kses_post($featured_image); |
|
1134 | 1134 | } else { |
1135 | 1135 | ?> |
1136 | - <img loading="lazy" class="placeholder" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
|
1136 | + <img loading="lazy" class="placeholder" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>"> |
|
1137 | 1137 | <?php |
1138 | 1138 | } |
1139 | 1139 | ?> |
@@ -1141,18 +1141,18 @@ discard block |
||
1141 | 1141 | </div> |
1142 | 1142 | <div class="entry-meta"> |
1143 | 1143 | <?php |
1144 | - foreach ( $post_categories as $c ) { |
|
1145 | - $cat = get_category( $c ); |
|
1144 | + foreach ($post_categories as $c) { |
|
1145 | + $cat = get_category($c); |
|
1146 | 1146 | /* Translators: %s: category name */ |
1147 | - $cats[] = '<a href="' . esc_url( get_category_link( $cat->term_id ) ) . '" title="' . sprintf( esc_html__( 'Posts in %s', 'lsx-blog-customizer' ), $cat->name ) . '">' . $cat->name . '</a>'; |
|
1147 | + $cats[] = '<a href="' . esc_url(get_category_link($cat->term_id)) . '" title="' . sprintf(esc_html__('Posts in %s', 'lsx-blog-customizer'), $cat->name) . '">' . $cat->name . '</a>'; |
|
1148 | 1148 | } |
1149 | - if ( ! empty( $cats ) ) { ?> |
|
1150 | - <div class="post-categories"><span></span><?php echo wp_kses_post( implode( ', ', $cats ) ); ?></div> |
|
1149 | + if ( ! empty($cats)) { ?> |
|
1150 | + <div class="post-categories"><span></span><?php echo wp_kses_post(implode(', ', $cats)); ?></div> |
|
1151 | 1151 | <?php } ?> |
1152 | 1152 | </div> |
1153 | 1153 | <h2 class="entry-title"> |
1154 | - <a href="<?php echo esc_url( $post_link ); ?>"> |
|
1155 | - <?php echo esc_html( $post_title ); ?> |
|
1154 | + <a href="<?php echo esc_url($post_link); ?>"> |
|
1155 | + <?php echo esc_html($post_title); ?> |
|
1156 | 1156 | </a> |
1157 | 1157 | </h2> |
1158 | 1158 | </header> |
@@ -1176,27 +1176,27 @@ discard block |
||
1176 | 1176 | * @param [type] $connected_members |
1177 | 1177 | * @return void |
1178 | 1178 | */ |
1179 | -function lsx_hp_member_connected( $connected_members, $post_type ) { |
|
1180 | - if ( ! empty( $connected_members ) ) { |
|
1179 | +function lsx_hp_member_connected($connected_members, $post_type) { |
|
1180 | + if ( ! empty($connected_members)) { |
|
1181 | 1181 | $content = '<div id="hp-connected-members" class="hp-connected-members connected-' . $post_type . '">'; |
1182 | - foreach ( $connected_members as $member ) { |
|
1183 | - $post_link = get_permalink( $member ); |
|
1184 | - $member_name = get_the_title( $member ); |
|
1182 | + foreach ($connected_members as $member) { |
|
1183 | + $post_link = get_permalink($member); |
|
1184 | + $member_name = get_the_title($member); |
|
1185 | 1185 | $member_name = '<span class="lsx-team-name">' . $member_name . '</span>'; |
1186 | 1186 | |
1187 | 1187 | $member_link = '<a href="' . $post_link . '" >' . $member_name . '</a>'; |
1188 | 1188 | |
1189 | 1189 | $roles = ''; |
1190 | - $terms = get_the_terms( $member, 'team_role' ); |
|
1190 | + $terms = get_the_terms($member, 'team_role'); |
|
1191 | 1191 | |
1192 | - if ( $terms && ! is_wp_error( $terms ) ) { |
|
1192 | + if ($terms && ! is_wp_error($terms)) { |
|
1193 | 1193 | $roles = array(); |
1194 | 1194 | |
1195 | - foreach ( $terms as $term ) { |
|
1195 | + foreach ($terms as $term) { |
|
1196 | 1196 | $roles[] = $term->name; |
1197 | 1197 | } |
1198 | 1198 | |
1199 | - $roles = join( ', ', $roles ); |
|
1199 | + $roles = join(', ', $roles); |
|
1200 | 1200 | } |
1201 | 1201 | $member_roles = '' !== $roles ? "<small class='lsx-team-roles'>$roles</small>" : ''; |
1202 | 1202 |
@@ -24,20 +24,20 @@ discard block |
||
24 | 24 | <?php lsx_post_meta_single_bottom(); ?> |
25 | 25 | </div><!-- .entry-meta --> |
26 | 26 | <?php |
27 | - if ( is_singular( 'workout' ) ) { |
|
28 | - the_content(); |
|
29 | - } |
|
30 | - ?> |
|
27 | + if ( is_singular( 'workout' ) ) { |
|
28 | + the_content(); |
|
29 | + } |
|
30 | + ?> |
|
31 | 31 | <div class="entry-content"> |
32 | 32 | <div class="single-plan-inner workout-content"> |
33 | 33 | <?php |
34 | - if ( is_singular( 'workout' ) ) { ?> |
|
34 | + if ( is_singular( 'workout' ) ) { ?> |
|
35 | 35 | <div class="single-plan-section-title workout title-lined"> |
36 | 36 | <?php lsx_get_svg_icon( 'work.svg' ); ?> |
37 | 37 | <h2><?php the_title(); ?></h2> |
38 | 38 | <?php if ( class_exists( 'LSX_Sharing' ) ) { |
39 | - lsx_content_sharing(); |
|
40 | - } ?> |
|
39 | + lsx_content_sharing(); |
|
40 | + } ?> |
|
41 | 41 | </div> |
42 | 42 | <?php } else { ?> |
43 | 43 | <div class="single-plan-section-title workout title-lined"> |
@@ -46,8 +46,8 @@ discard block |
||
46 | 46 | </div> |
47 | 47 | <?php } ?> |
48 | 48 | <?php |
49 | - if ( lsx_health_plan_has_warmup() && ( ! is_singular( 'workout' ) ) ) { |
|
50 | - ?> |
|
49 | + if ( lsx_health_plan_has_warmup() && ( ! is_singular( 'workout' ) ) ) { |
|
50 | + ?> |
|
51 | 51 | <div class="workout-instructions"> |
52 | 52 | <div class="row"> |
53 | 53 | <div class="col-md-12"> |
@@ -59,8 +59,8 @@ discard block |
||
59 | 59 | </div> |
60 | 60 | </div> |
61 | 61 | <?php |
62 | - } |
|
63 | - ?> |
|
62 | + } |
|
63 | + ?> |
|
64 | 64 | |
65 | 65 | <?php lsx_health_plan_workout_sets(); ?> |
66 | 66 | </div> |
@@ -76,5 +76,5 @@ discard block |
||
76 | 76 | <?php } ?> |
77 | 77 | <?php |
78 | 78 | if ( ! empty( $connected_articles ) ) { |
79 | - lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) ); |
|
79 | + lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) ); |
|
80 | 80 | } |
@@ -8,10 +8,10 @@ discard block |
||
8 | 8 | global $shortcode_args; |
9 | 9 | |
10 | 10 | // Getting translated endpoint. |
11 | -$archive_workout = \lsx_health_plan\functions\get_option( 'endpoint_workout_archive', 'workout' ); |
|
12 | -$workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ); |
|
11 | +$archive_workout = \lsx_health_plan\functions\get_option('endpoint_workout_archive', 'workout'); |
|
12 | +$workout = \lsx_health_plan\functions\get_option('endpoint_workout', 'workout'); |
|
13 | 13 | |
14 | -$connected_articles = get_post_meta( get_the_ID(), ( $workout . '_connected_articles' ), true ); |
|
14 | +$connected_articles = get_post_meta(get_the_ID(), ($workout . '_connected_articles'), true); |
|
15 | 15 | |
16 | 16 | ?> |
17 | 17 | |
@@ -24,36 +24,36 @@ discard block |
||
24 | 24 | <?php lsx_post_meta_single_bottom(); ?> |
25 | 25 | </div><!-- .entry-meta --> |
26 | 26 | <?php |
27 | - if ( is_singular( 'workout' ) ) { |
|
27 | + if (is_singular('workout')) { |
|
28 | 28 | the_content(); |
29 | 29 | } |
30 | 30 | ?> |
31 | 31 | <div class="entry-content"> |
32 | 32 | <div class="single-plan-inner workout-content"> |
33 | 33 | <?php |
34 | - if ( is_singular( 'workout' ) ) { ?> |
|
34 | + if (is_singular('workout')) { ?> |
|
35 | 35 | <div class="single-plan-section-title workout title-lined"> |
36 | - <?php lsx_get_svg_icon( 'work.svg' ); ?> |
|
36 | + <?php lsx_get_svg_icon('work.svg'); ?> |
|
37 | 37 | <h2><?php the_title(); ?></h2> |
38 | - <?php if ( class_exists( 'LSX_Sharing' ) ) { |
|
38 | + <?php if (class_exists('LSX_Sharing')) { |
|
39 | 39 | lsx_content_sharing(); |
40 | 40 | } ?> |
41 | 41 | </div> |
42 | 42 | <?php } else { ?> |
43 | 43 | <div class="single-plan-section-title workout title-lined"> |
44 | - <?php lsx_get_svg_icon( 'work.svg' ); ?> |
|
45 | - <h2><?php esc_html_e( 'My Workout', 'lsx-health-plan' ); ?></h2> |
|
44 | + <?php lsx_get_svg_icon('work.svg'); ?> |
|
45 | + <h2><?php esc_html_e('My Workout', 'lsx-health-plan'); ?></h2> |
|
46 | 46 | </div> |
47 | 47 | <?php } ?> |
48 | 48 | <?php |
49 | - if ( lsx_health_plan_has_warmup() && ( ! is_singular( 'workout' ) ) ) { |
|
49 | + if (lsx_health_plan_has_warmup() && ( ! is_singular('workout'))) { |
|
50 | 50 | ?> |
51 | 51 | <div class="workout-instructions"> |
52 | 52 | <div class="row"> |
53 | 53 | <div class="col-md-12"> |
54 | 54 | <div class="content-intro"> |
55 | - <h3><?php esc_html_e( "Don't forget your warm up!", 'lsx-health-plan' ); ?></h3> |
|
56 | - <p><?php esc_html_e( 'Be sure to do the warm-up before every workout session.', 'lsx-health-plan' ); ?></p> |
|
55 | + <h3><?php esc_html_e("Don't forget your warm up!", 'lsx-health-plan'); ?></h3> |
|
56 | + <p><?php esc_html_e('Be sure to do the warm-up before every workout session.', 'lsx-health-plan'); ?></p> |
|
57 | 57 | </div> |
58 | 58 | </div> |
59 | 59 | </div> |
@@ -69,12 +69,12 @@ discard block |
||
69 | 69 | <?php lsx_entry_bottom(); ?> |
70 | 70 | |
71 | 71 | </article><!-- #post-## --> |
72 | -<?php if ( is_singular( $workout ) ) { ?> |
|
72 | +<?php if (is_singular($workout)) { ?> |
|
73 | 73 | <div class="back-plan-btn"> |
74 | - <a class="btn" href="/<?php echo $archive_workout; ?>"><?php esc_html_e( 'Back to workouts', 'lsx-health-plan' ); ?></a> |
|
74 | + <a class="btn" href="/<?php echo $archive_workout; ?>"><?php esc_html_e('Back to workouts', 'lsx-health-plan'); ?></a> |
|
75 | 75 | </div> |
76 | 76 | <?php } ?> |
77 | 77 | <?php |
78 | -if ( ! empty( $connected_articles ) ) { |
|
79 | - lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) ); |
|
78 | +if ( ! empty($connected_articles)) { |
|
79 | + lsx_hp_single_related($connected_articles, __('Related articles', 'lsx-health-plan')); |
|
80 | 80 | } |
@@ -8,10 +8,10 @@ discard block |
||
8 | 8 | |
9 | 9 | $warm_up = get_post_meta( get_the_ID(), 'plan_warmup', true ); |
10 | 10 | if ( false === $warm_up || '' === $warm_up ) { |
11 | - $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
12 | - if ( isset( $options['plan_warmup'] ) && '' !== $options['plan_warmup'] && ! empty( $options['plan_warmup'] ) ) { |
|
13 | - $warm_up = $options['plan_warmup']; |
|
14 | - } |
|
11 | + $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
12 | + if ( isset( $options['plan_warmup'] ) && '' !== $options['plan_warmup'] && ! empty( $options['plan_warmup'] ) ) { |
|
13 | + $warm_up = $options['plan_warmup']; |
|
14 | + } |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | ?> |
@@ -19,25 +19,25 @@ discard block |
||
19 | 19 | <?php |
20 | 20 | |
21 | 21 | if ( false !== $warm_up && '' !== $warm_up ) { |
22 | - if ( ! is_array( $warm_up ) ) { |
|
23 | - $warm_up = array( $warm_up ); |
|
24 | - } |
|
22 | + if ( ! is_array( $warm_up ) ) { |
|
23 | + $warm_up = array( $warm_up ); |
|
24 | + } |
|
25 | 25 | |
26 | - $warmup_type = array( 'page', 'workout', 'exercise' ); |
|
27 | - $warmup_query = new WP_Query( |
|
28 | - array( |
|
29 | - 'post__in' => $warm_up, |
|
30 | - 'post_type' => $warmup_type, |
|
31 | - ) |
|
32 | - ); |
|
26 | + $warmup_type = array( 'page', 'workout', 'exercise' ); |
|
27 | + $warmup_query = new WP_Query( |
|
28 | + array( |
|
29 | + 'post__in' => $warm_up, |
|
30 | + 'post_type' => $warmup_type, |
|
31 | + ) |
|
32 | + ); |
|
33 | 33 | |
34 | - if ( $warmup_query->have_posts() ) { |
|
35 | - while ( $warmup_query->have_posts() ) { |
|
36 | - $warmup_query->the_post(); |
|
37 | - lsx_entry_before(); |
|
38 | - if ( 'workout' === get_post_type() ) { |
|
39 | - $connected_workouts = array( get_the_ID() ); |
|
40 | - ?> |
|
34 | + if ( $warmup_query->have_posts() ) { |
|
35 | + while ( $warmup_query->have_posts() ) { |
|
36 | + $warmup_query->the_post(); |
|
37 | + lsx_entry_before(); |
|
38 | + if ( 'workout' === get_post_type() ) { |
|
39 | + $connected_workouts = array( get_the_ID() ); |
|
40 | + ?> |
|
41 | 41 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
42 | 42 | <?php lsx_entry_top(); ?> |
43 | 43 | <div class="entry-content"> |
@@ -51,9 +51,9 @@ discard block |
||
51 | 51 | <?php lsx_entry_bottom(); ?> |
52 | 52 | </article><!-- #post-## --> |
53 | 53 | <?php |
54 | - lsx_health_plan_warmup_sets( $connected_workouts ); |
|
55 | - } else { |
|
56 | - ?> |
|
54 | + lsx_health_plan_warmup_sets( $connected_workouts ); |
|
55 | + } else { |
|
56 | + ?> |
|
57 | 57 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
58 | 58 | <?php lsx_entry_top(); ?> |
59 | 59 | <div class="entry-content"> |
@@ -63,24 +63,24 @@ discard block |
||
63 | 63 | <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
64 | 64 | </div> |
65 | 65 | <?php |
66 | - the_content(); |
|
67 | - wp_link_pages( array( |
|
68 | - 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
69 | - 'after' => '</div></div>', |
|
70 | - 'link_before' => '<span>', |
|
71 | - 'link_after' => '</span>', |
|
72 | - ) ); |
|
73 | - ?> |
|
66 | + the_content(); |
|
67 | + wp_link_pages( array( |
|
68 | + 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
69 | + 'after' => '</div></div>', |
|
70 | + 'link_before' => '<span>', |
|
71 | + 'link_after' => '</span>', |
|
72 | + ) ); |
|
73 | + ?> |
|
74 | 74 | </div> |
75 | 75 | </div><!-- .entry-content --> |
76 | 76 | <?php lsx_entry_bottom(); ?> |
77 | 77 | </article><!-- #post-## --> |
78 | 78 | <?php |
79 | - } |
|
79 | + } |
|
80 | 80 | |
81 | - } |
|
82 | - wp_reset_postdata(); |
|
83 | - } |
|
81 | + } |
|
82 | + wp_reset_postdata(); |
|
83 | + } |
|
84 | 84 | } |
85 | 85 | ?> |
86 | 86 | </div> |
@@ -6,10 +6,10 @@ discard block |
||
6 | 6 | */ |
7 | 7 | global $group_name, $connected_workouts, $shortcode_args; |
8 | 8 | |
9 | -$warm_up = get_post_meta( get_the_ID(), 'plan_warmup', true ); |
|
10 | -if ( false === $warm_up || '' === $warm_up ) { |
|
11 | - $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
12 | - if ( isset( $options['plan_warmup'] ) && '' !== $options['plan_warmup'] && ! empty( $options['plan_warmup'] ) ) { |
|
9 | +$warm_up = get_post_meta(get_the_ID(), 'plan_warmup', true); |
|
10 | +if (false === $warm_up || '' === $warm_up) { |
|
11 | + $options = \lsx_health_plan\functions\get_option('all'); |
|
12 | + if (isset($options['plan_warmup']) && '' !== $options['plan_warmup'] && ! empty($options['plan_warmup'])) { |
|
13 | 13 | $warm_up = $options['plan_warmup']; |
14 | 14 | } |
15 | 15 | } |
@@ -18,12 +18,12 @@ discard block |
||
18 | 18 | <div class="warmup-container"> |
19 | 19 | <?php |
20 | 20 | |
21 | -if ( false !== $warm_up && '' !== $warm_up ) { |
|
22 | - if ( ! is_array( $warm_up ) ) { |
|
23 | - $warm_up = array( $warm_up ); |
|
21 | +if (false !== $warm_up && '' !== $warm_up) { |
|
22 | + if ( ! is_array($warm_up)) { |
|
23 | + $warm_up = array($warm_up); |
|
24 | 24 | } |
25 | 25 | |
26 | - $warmup_type = array( 'page', 'workout', 'exercise' ); |
|
26 | + $warmup_type = array('page', 'workout', 'exercise'); |
|
27 | 27 | $warmup_query = new WP_Query( |
28 | 28 | array( |
29 | 29 | 'post__in' => $warm_up, |
@@ -31,27 +31,27 @@ discard block |
||
31 | 31 | ) |
32 | 32 | ); |
33 | 33 | |
34 | - if ( $warmup_query->have_posts() ) { |
|
35 | - while ( $warmup_query->have_posts() ) { |
|
34 | + if ($warmup_query->have_posts()) { |
|
35 | + while ($warmup_query->have_posts()) { |
|
36 | 36 | $warmup_query->the_post(); |
37 | 37 | lsx_entry_before(); |
38 | - if ( 'workout' === get_post_type() ) { |
|
39 | - $connected_workouts = array( get_the_ID() ); |
|
38 | + if ('workout' === get_post_type()) { |
|
39 | + $connected_workouts = array(get_the_ID()); |
|
40 | 40 | ?> |
41 | 41 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
42 | 42 | <?php lsx_entry_top(); ?> |
43 | 43 | <div class="entry-content"> |
44 | 44 | <div class="single-plan-inner warmup-content"> |
45 | 45 | <div class="single-plan-section-title warmup-plan title-lined"> |
46 | - <?php lsx_get_svg_icon( 'warm.svg' ); ?> |
|
47 | - <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
|
46 | + <?php lsx_get_svg_icon('warm.svg'); ?> |
|
47 | + <h2><?php esc_html_e('Warm Up', 'lsx-health-plan'); ?></h2> |
|
48 | 48 | </div> |
49 | 49 | </div> |
50 | 50 | </div><!-- .entry-content --> |
51 | 51 | <?php lsx_entry_bottom(); ?> |
52 | 52 | </article><!-- #post-## --> |
53 | 53 | <?php |
54 | - lsx_health_plan_warmup_sets( $connected_workouts ); |
|
54 | + lsx_health_plan_warmup_sets($connected_workouts); |
|
55 | 55 | } else { |
56 | 56 | ?> |
57 | 57 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
@@ -59,17 +59,17 @@ discard block |
||
59 | 59 | <div class="entry-content"> |
60 | 60 | <div class="single-plan-inner warmup-content"> |
61 | 61 | <div class="single-plan-section-title warmup-plan title-lined"> |
62 | - <?php lsx_get_svg_icon( 'warm.svg' ); ?> |
|
63 | - <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
|
62 | + <?php lsx_get_svg_icon('warm.svg'); ?> |
|
63 | + <h2><?php esc_html_e('Warm Up', 'lsx-health-plan'); ?></h2> |
|
64 | 64 | </div> |
65 | 65 | <?php |
66 | 66 | the_content(); |
67 | - wp_link_pages( array( |
|
67 | + wp_link_pages(array( |
|
68 | 68 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
69 | 69 | 'after' => '</div></div>', |
70 | 70 | 'link_before' => '<span>', |
71 | 71 | 'link_after' => '</span>', |
72 | - ) ); |
|
72 | + )); |
|
73 | 73 | ?> |
74 | 74 | </div> |
75 | 75 | </div><!-- .entry-content --> |