Passed
Push — add/multiplan ( 4dee3f...d69cc6 )
by Virginia
03:36
created
templates/partials/meal-plans.php 2 patches
Indentation   +129 added lines, -129 removed lines patch added patch discarded remove patch
@@ -7,18 +7,18 @@  discard block
 block discarded – undo
7 7
 global $connected_meals, $shortcode_args;
8 8
 
9 9
 if ( is_singular( 'plan' ) ) {
10
-	$section_key = get_query_var( 'section' );
11
-	if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) {
12
-		$section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key );
13
-		if ( isset( $section_info['connected_meals'] ) && '' !== $section_info['connected_meals'] ) {
14
-			$connected_meals = \lsx_health_plan\functions\prep_array( $section_info['connected_meals'] );
15
-		}
16
-	}
10
+     $section_key = get_query_var( 'section' );
11
+     if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) {
12
+          $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key );
13
+          if ( isset( $section_info['connected_meals'] ) && '' !== $section_info['connected_meals'] ) {
14
+               $connected_meals = \lsx_health_plan\functions\prep_array( $section_info['connected_meals'] );
15
+          }
16
+     }
17 17
 }
18 18
 
19 19
 // Check for any shortcode overrides.
20 20
 if ( null !== $shortcode_args && isset( $shortcode_args['include'] ) ) {
21
-	$connected_meals = array( get_the_ID() );
21
+     $connected_meals = array( get_the_ID() );
22 22
 }
23 23
 ?>
24 24
 
@@ -26,144 +26,144 @@  discard block
 block discarded – undo
26 26
 
27 27
 	<?php
28 28
 
29
-	// Looking for meals.
30
-	if ( empty( $connected_meals ) ) {
31
-		$connected_meals = get_post_meta( get_the_ID(), 'connected_meals', true );
32
-
33
-		if ( empty( $connected_meals ) ) {
34
-			$options = \lsx_health_plan\functions\get_option( 'all' );
35
-			if ( isset( $options['connected_meals'] ) && '' !== $options['connected_meals'] && ! empty( $options['connected_meals'] ) ) {
36
-				$connected_meals = $options['connected_meals'];
37
-				if ( ! array( $connected_meals ) ) {
38
-					$connected_meals = array( $connected_meals );
39
-				}
40
-			}
41
-		}
42
-	}
43
-
44
-	// This is for the meal single template.
45
-	if ( is_single() && is_singular( 'meal' ) ) {
46
-		$connected_meals = array( get_the_ID() );
47
-	}
48
-
49
-	// The top part
50
-	echo wp_kses_post( wp_kses_post( lsx_health_plan_meal_main_content() ) );
51
-
52
-	if ( false !== $connected_meals && '' !== $connected_meals && ! empty( $connected_meals ) ) {
53
-
54
-		$args  = array(
55
-			'orderby'   => 'date',
56
-			'order'     => 'DESC',
57
-			'post_type' => 'meal',
58
-			'post__in'  => $connected_meals,
59
-		);
60
-		$meals = new WP_Query( $args );
61
-		if ( $meals->have_posts() ) {
62
-			while ( $meals->have_posts() ) {
63
-				$meals->the_post();
64
-				$meal_id       = get_the_ID();
29
+     // Looking for meals.
30
+     if ( empty( $connected_meals ) ) {
31
+          $connected_meals = get_post_meta( get_the_ID(), 'connected_meals', true );
32
+
33
+          if ( empty( $connected_meals ) ) {
34
+               $options = \lsx_health_plan\functions\get_option( 'all' );
35
+               if ( isset( $options['connected_meals'] ) && '' !== $options['connected_meals'] && ! empty( $options['connected_meals'] ) ) {
36
+                    $connected_meals = $options['connected_meals'];
37
+                    if ( ! array( $connected_meals ) ) {
38
+                         $connected_meals = array( $connected_meals );
39
+                    }
40
+               }
41
+          }
42
+     }
43
+
44
+     // This is for the meal single template.
45
+     if ( is_single() && is_singular( 'meal' ) ) {
46
+          $connected_meals = array( get_the_ID() );
47
+     }
48
+
49
+     // The top part
50
+     echo wp_kses_post( wp_kses_post( lsx_health_plan_meal_main_content() ) );
51
+
52
+     if ( false !== $connected_meals && '' !== $connected_meals && ! empty( $connected_meals ) ) {
53
+
54
+          $args  = array(
55
+               'orderby'   => 'date',
56
+               'order'     => 'DESC',
57
+               'post_type' => 'meal',
58
+               'post__in'  => $connected_meals,
59
+          );
60
+          $meals = new WP_Query( $args );
61
+          if ( $meals->have_posts() ) {
62
+               while ( $meals->have_posts() ) {
63
+                    $meals->the_post();
64
+                    $meal_id       = get_the_ID();
65 65
 				
66 66
 
67
-				// Breakfast.
68
-				$pre_breakfast_snack  = get_post_meta( get_the_ID(), 'meal_pre_breakfast_snack', true );
69
-				$breakfast            = get_post_meta( get_the_ID(), 'meal_breakfast', true );
70
-				$post_breakfast_snack = get_post_meta( get_the_ID(), 'meal_breakfast_snack', true );
67
+                    // Breakfast.
68
+                    $pre_breakfast_snack  = get_post_meta( get_the_ID(), 'meal_pre_breakfast_snack', true );
69
+                    $breakfast            = get_post_meta( get_the_ID(), 'meal_breakfast', true );
70
+                    $post_breakfast_snack = get_post_meta( get_the_ID(), 'meal_breakfast_snack', true );
71 71
 
72
-				// Lunch.
73
-				$pre_lunch_snack  = get_post_meta( get_the_ID(), 'meal_pre_lunch_snack', true );
74
-				$lunch            = get_post_meta( get_the_ID(), 'meal_lunch', true );
75
-				$post_lunch_snack = get_post_meta( get_the_ID(), 'meal_lunch_snack', true );
72
+                    // Lunch.
73
+                    $pre_lunch_snack  = get_post_meta( get_the_ID(), 'meal_pre_lunch_snack', true );
74
+                    $lunch            = get_post_meta( get_the_ID(), 'meal_lunch', true );
75
+                    $post_lunch_snack = get_post_meta( get_the_ID(), 'meal_lunch_snack', true );
76 76
 
77
-				// Dinner.
78
-				$pre_dinner_snack  = get_post_meta( get_the_ID(), 'meal_pre_dinner_snack', true );
79
-				$dinner            = get_post_meta( get_the_ID(), 'meal_dinner', true );
80
-				$post_dinner_snack = get_post_meta( get_the_ID(), 'meal_dinner_snack', true );
77
+                    // Dinner.
78
+                    $pre_dinner_snack  = get_post_meta( get_the_ID(), 'meal_pre_dinner_snack', true );
79
+                    $dinner            = get_post_meta( get_the_ID(), 'meal_dinner', true );
80
+                    $post_dinner_snack = get_post_meta( get_the_ID(), 'meal_dinner_snack', true );
81 81
 
82
-				//Main Meals Title
83
-				//echo '<h3 class="meals-section-title">' . esc_html__( 'Meal Plan', 'lsx-health-plan' ) . '</h3>';
84
-				?>
82
+                    //Main Meals Title
83
+                    //echo '<h3 class="meals-section-title">' . esc_html__( 'Meal Plan', 'lsx-health-plan' ) . '</h3>';
84
+                    ?>
85 85
 				<div class="row eating-row">
86 86
 					<div class="col-md-4 eating-column">
87 87
 					<?php
88
-					if ( ! empty( $pre_breakfast_snack ) ) {
89
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
90
-						echo wp_kses_post( apply_filters( 'the_content', $pre_breakfast_snack ) );
91
-						echo '</div>';
92
-					}
93
-					if ( ! empty( $breakfast ) ) {
94
-						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Breakfast', 'lsx-health-plan' ) . '</h3>';
95
-						echo wp_kses_post( apply_filters( 'the_content', $breakfast ) );
96
-						echo '</div>';
97
-					}
98
-					if ( ! empty( $post_breakfast_snack ) ) {
99
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
100
-						echo wp_kses_post( apply_filters( 'the_content', $post_breakfast_snack ) );
101
-						echo '</div>';
102
-					}
103
-
104
-					$args = array(
105
-						'meal_id'   => $meal_id,
106
-						'meal_time' => 'breakfast',
107
-					);
108
-					lsx_hp_meal_plan_recipes( $args );
109
-					?>
88
+                         if ( ! empty( $pre_breakfast_snack ) ) {
89
+                              echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
90
+                              echo wp_kses_post( apply_filters( 'the_content', $pre_breakfast_snack ) );
91
+                              echo '</div>';
92
+                         }
93
+                         if ( ! empty( $breakfast ) ) {
94
+                              echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Breakfast', 'lsx-health-plan' ) . '</h3>';
95
+                              echo wp_kses_post( apply_filters( 'the_content', $breakfast ) );
96
+                              echo '</div>';
97
+                         }
98
+                         if ( ! empty( $post_breakfast_snack ) ) {
99
+                              echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
100
+                              echo wp_kses_post( apply_filters( 'the_content', $post_breakfast_snack ) );
101
+                              echo '</div>';
102
+                         }
103
+
104
+                         $args = array(
105
+                              'meal_id'   => $meal_id,
106
+                              'meal_time' => 'breakfast',
107
+                         );
108
+                         lsx_hp_meal_plan_recipes( $args );
109
+                         ?>
110 110
 					</div>
111 111
 					<div class="col-md-4 eating-column">
112 112
 					<?php
113
-					if ( ! empty( $pre_lunch_snack ) ) {
114
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
115
-						echo wp_kses_post( apply_filters( 'the_content', $pre_lunch_snack ) );
116
-						echo '</div>';
117
-					}
118
-					if ( ! empty( $lunch ) ) {
119
-						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Lunch', 'lsx-health-plan' ) . '</h3>';
120
-						echo wp_kses_post( apply_filters( 'the_content', $lunch ) );
121
-						echo '</div>';
122
-					}
123
-					if ( ! empty( $post_lunch_snack ) ) {
124
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
125
-						echo wp_kses_post( apply_filters( 'the_content', $post_lunch_snack ) );
126
-						echo '</div>';
127
-					}
128
-
129
-					$args = array(
130
-						'meal_id'   => $meal_id,
131
-						'meal_time' => 'lunch',
132
-					);
133
-					lsx_hp_meal_plan_recipes( $args );
134
-					?>
113
+                         if ( ! empty( $pre_lunch_snack ) ) {
114
+                              echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
115
+                              echo wp_kses_post( apply_filters( 'the_content', $pre_lunch_snack ) );
116
+                              echo '</div>';
117
+                         }
118
+                         if ( ! empty( $lunch ) ) {
119
+                              echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Lunch', 'lsx-health-plan' ) . '</h3>';
120
+                              echo wp_kses_post( apply_filters( 'the_content', $lunch ) );
121
+                              echo '</div>';
122
+                         }
123
+                         if ( ! empty( $post_lunch_snack ) ) {
124
+                              echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
125
+                              echo wp_kses_post( apply_filters( 'the_content', $post_lunch_snack ) );
126
+                              echo '</div>';
127
+                         }
128
+
129
+                         $args = array(
130
+                              'meal_id'   => $meal_id,
131
+                              'meal_time' => 'lunch',
132
+                         );
133
+                         lsx_hp_meal_plan_recipes( $args );
134
+                         ?>
135 135
 					</div>
136 136
 					<div class="col-md-4 eating-column">
137 137
 						<?php
138
-						if ( ! empty( $pre_dinner_snack ) ) {
139
-							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
140
-							echo wp_kses_post( apply_filters( 'the_content', $pre_dinner_snack ) );
141
-							echo '</div>';
142
-						}
143
-						if ( ! empty( $dinner ) ) {
144
-							echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Dinner', 'lsx-health-plan' ) . '</h3>';
145
-							echo wp_kses_post( apply_filters( 'the_content', $dinner ) );
146
-							echo '</div>';
147
-						}
148
-						if ( ! empty( $post_dinner_snack ) ) {
149
-							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
150
-							echo wp_kses_post( apply_filters( 'the_content', $post_dinner_snack ) );
151
-							echo '</div>';
152
-						}
153
-
154
-						$args = array(
155
-							'meal_id'   => $meal_id,
156
-							'meal_time' => 'dinner',
157
-						);
158
-						lsx_hp_meal_plan_recipes( $args );
159
-						?>
138
+                              if ( ! empty( $pre_dinner_snack ) ) {
139
+                                   echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
140
+                                   echo wp_kses_post( apply_filters( 'the_content', $pre_dinner_snack ) );
141
+                                   echo '</div>';
142
+                              }
143
+                              if ( ! empty( $dinner ) ) {
144
+                                   echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Dinner', 'lsx-health-plan' ) . '</h3>';
145
+                                   echo wp_kses_post( apply_filters( 'the_content', $dinner ) );
146
+                                   echo '</div>';
147
+                              }
148
+                              if ( ! empty( $post_dinner_snack ) ) {
149
+                                   echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
150
+                                   echo wp_kses_post( apply_filters( 'the_content', $post_dinner_snack ) );
151
+                                   echo '</div>';
152
+                              }
153
+
154
+                              $args = array(
155
+                                   'meal_id'   => $meal_id,
156
+                                   'meal_time' => 'dinner',
157
+                              );
158
+                              lsx_hp_meal_plan_recipes( $args );
159
+                              ?>
160 160
 					</div>
161 161
 				</div>
162 162
 				<?php
163
-			}
164
-		}
165
-	}
166
-	?>
163
+               }
164
+          }
165
+     }
166
+     ?>
167 167
 	<?php wp_reset_postdata(); ?>
168 168
 </div>
169 169
 <?php
Please login to merge, or discard this patch.
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@  discard block
 block discarded – undo
6 6
  */
7 7
 global $connected_meals, $shortcode_args;
8 8
 
9
-if ( is_singular( 'plan' ) ) {
10
-	$section_key = get_query_var( 'section' );
11
-	if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) {
12
-		$section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key );
13
-		if ( isset( $section_info['connected_meals'] ) && '' !== $section_info['connected_meals'] ) {
14
-			$connected_meals = \lsx_health_plan\functions\prep_array( $section_info['connected_meals'] );
9
+if (is_singular('plan')) {
10
+	$section_key = get_query_var('section');
11
+	if ('' !== $section_key && \lsx_health_plan\functions\plan\has_sections()) {
12
+		$section_info = \lsx_health_plan\functions\plan\get_section_info($section_key);
13
+		if (isset($section_info['connected_meals']) && '' !== $section_info['connected_meals']) {
14
+			$connected_meals = \lsx_health_plan\functions\prep_array($section_info['connected_meals']);
15 15
 		}
16 16
 	}
17 17
 }
18 18
 
19 19
 // Check for any shortcode overrides.
20
-if ( null !== $shortcode_args && isset( $shortcode_args['include'] ) ) {
21
-	$connected_meals = array( get_the_ID() );
20
+if (null !== $shortcode_args && isset($shortcode_args['include'])) {
21
+	$connected_meals = array(get_the_ID());
22 22
 }
23 23
 ?>
24 24
 
@@ -27,57 +27,57 @@  discard block
 block discarded – undo
27 27
 	<?php
28 28
 
29 29
 	// Looking for meals.
30
-	if ( empty( $connected_meals ) ) {
31
-		$connected_meals = get_post_meta( get_the_ID(), 'connected_meals', true );
30
+	if (empty($connected_meals)) {
31
+		$connected_meals = get_post_meta(get_the_ID(), 'connected_meals', true);
32 32
 
33
-		if ( empty( $connected_meals ) ) {
34
-			$options = \lsx_health_plan\functions\get_option( 'all' );
35
-			if ( isset( $options['connected_meals'] ) && '' !== $options['connected_meals'] && ! empty( $options['connected_meals'] ) ) {
33
+		if (empty($connected_meals)) {
34
+			$options = \lsx_health_plan\functions\get_option('all');
35
+			if (isset($options['connected_meals']) && '' !== $options['connected_meals'] && ! empty($options['connected_meals'])) {
36 36
 				$connected_meals = $options['connected_meals'];
37
-				if ( ! array( $connected_meals ) ) {
38
-					$connected_meals = array( $connected_meals );
37
+				if ( ! array($connected_meals)) {
38
+					$connected_meals = array($connected_meals);
39 39
 				}
40 40
 			}
41 41
 		}
42 42
 	}
43 43
 
44 44
 	// This is for the meal single template.
45
-	if ( is_single() && is_singular( 'meal' ) ) {
46
-		$connected_meals = array( get_the_ID() );
45
+	if (is_single() && is_singular('meal')) {
46
+		$connected_meals = array(get_the_ID());
47 47
 	}
48 48
 
49 49
 	// The top part
50
-	echo wp_kses_post( wp_kses_post( lsx_health_plan_meal_main_content() ) );
50
+	echo wp_kses_post(wp_kses_post(lsx_health_plan_meal_main_content()));
51 51
 
52
-	if ( false !== $connected_meals && '' !== $connected_meals && ! empty( $connected_meals ) ) {
52
+	if (false !== $connected_meals && '' !== $connected_meals && ! empty($connected_meals)) {
53 53
 
54
-		$args  = array(
54
+		$args = array(
55 55
 			'orderby'   => 'date',
56 56
 			'order'     => 'DESC',
57 57
 			'post_type' => 'meal',
58 58
 			'post__in'  => $connected_meals,
59 59
 		);
60
-		$meals = new WP_Query( $args );
61
-		if ( $meals->have_posts() ) {
62
-			while ( $meals->have_posts() ) {
60
+		$meals = new WP_Query($args);
61
+		if ($meals->have_posts()) {
62
+			while ($meals->have_posts()) {
63 63
 				$meals->the_post();
64
-				$meal_id       = get_the_ID();
64
+				$meal_id = get_the_ID();
65 65
 				
66 66
 
67 67
 				// Breakfast.
68
-				$pre_breakfast_snack  = get_post_meta( get_the_ID(), 'meal_pre_breakfast_snack', true );
69
-				$breakfast            = get_post_meta( get_the_ID(), 'meal_breakfast', true );
70
-				$post_breakfast_snack = get_post_meta( get_the_ID(), 'meal_breakfast_snack', true );
68
+				$pre_breakfast_snack  = get_post_meta(get_the_ID(), 'meal_pre_breakfast_snack', true);
69
+				$breakfast            = get_post_meta(get_the_ID(), 'meal_breakfast', true);
70
+				$post_breakfast_snack = get_post_meta(get_the_ID(), 'meal_breakfast_snack', true);
71 71
 
72 72
 				// Lunch.
73
-				$pre_lunch_snack  = get_post_meta( get_the_ID(), 'meal_pre_lunch_snack', true );
74
-				$lunch            = get_post_meta( get_the_ID(), 'meal_lunch', true );
75
-				$post_lunch_snack = get_post_meta( get_the_ID(), 'meal_lunch_snack', true );
73
+				$pre_lunch_snack  = get_post_meta(get_the_ID(), 'meal_pre_lunch_snack', true);
74
+				$lunch            = get_post_meta(get_the_ID(), 'meal_lunch', true);
75
+				$post_lunch_snack = get_post_meta(get_the_ID(), 'meal_lunch_snack', true);
76 76
 
77 77
 				// Dinner.
78
-				$pre_dinner_snack  = get_post_meta( get_the_ID(), 'meal_pre_dinner_snack', true );
79
-				$dinner            = get_post_meta( get_the_ID(), 'meal_dinner', true );
80
-				$post_dinner_snack = get_post_meta( get_the_ID(), 'meal_dinner_snack', true );
78
+				$pre_dinner_snack  = get_post_meta(get_the_ID(), 'meal_pre_dinner_snack', true);
79
+				$dinner            = get_post_meta(get_the_ID(), 'meal_dinner', true);
80
+				$post_dinner_snack = get_post_meta(get_the_ID(), 'meal_dinner_snack', true);
81 81
 
82 82
 				//Main Meals Title
83 83
 				//echo '<h3 class="meals-section-title">' . esc_html__( 'Meal Plan', 'lsx-health-plan' ) . '</h3>';
@@ -85,19 +85,19 @@  discard block
 block discarded – undo
85 85
 				<div class="row eating-row">
86 86
 					<div class="col-md-4 eating-column">
87 87
 					<?php
88
-					if ( ! empty( $pre_breakfast_snack ) ) {
89
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
90
-						echo wp_kses_post( apply_filters( 'the_content', $pre_breakfast_snack ) );
88
+					if ( ! empty($pre_breakfast_snack)) {
89
+						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
90
+						echo wp_kses_post(apply_filters('the_content', $pre_breakfast_snack));
91 91
 						echo '</div>';
92 92
 					}
93
-					if ( ! empty( $breakfast ) ) {
94
-						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Breakfast', 'lsx-health-plan' ) . '</h3>';
95
-						echo wp_kses_post( apply_filters( 'the_content', $breakfast ) );
93
+					if ( ! empty($breakfast)) {
94
+						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Breakfast', 'lsx-health-plan') . '</h3>';
95
+						echo wp_kses_post(apply_filters('the_content', $breakfast));
96 96
 						echo '</div>';
97 97
 					}
98
-					if ( ! empty( $post_breakfast_snack ) ) {
99
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
100
-						echo wp_kses_post( apply_filters( 'the_content', $post_breakfast_snack ) );
98
+					if ( ! empty($post_breakfast_snack)) {
99
+						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
100
+						echo wp_kses_post(apply_filters('the_content', $post_breakfast_snack));
101 101
 						echo '</div>';
102 102
 					}
103 103
 
@@ -105,24 +105,24 @@  discard block
 block discarded – undo
105 105
 						'meal_id'   => $meal_id,
106 106
 						'meal_time' => 'breakfast',
107 107
 					);
108
-					lsx_hp_meal_plan_recipes( $args );
108
+					lsx_hp_meal_plan_recipes($args);
109 109
 					?>
110 110
 					</div>
111 111
 					<div class="col-md-4 eating-column">
112 112
 					<?php
113
-					if ( ! empty( $pre_lunch_snack ) ) {
114
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
115
-						echo wp_kses_post( apply_filters( 'the_content', $pre_lunch_snack ) );
113
+					if ( ! empty($pre_lunch_snack)) {
114
+						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
115
+						echo wp_kses_post(apply_filters('the_content', $pre_lunch_snack));
116 116
 						echo '</div>';
117 117
 					}
118
-					if ( ! empty( $lunch ) ) {
119
-						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Lunch', 'lsx-health-plan' ) . '</h3>';
120
-						echo wp_kses_post( apply_filters( 'the_content', $lunch ) );
118
+					if ( ! empty($lunch)) {
119
+						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Lunch', 'lsx-health-plan') . '</h3>';
120
+						echo wp_kses_post(apply_filters('the_content', $lunch));
121 121
 						echo '</div>';
122 122
 					}
123
-					if ( ! empty( $post_lunch_snack ) ) {
124
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
125
-						echo wp_kses_post( apply_filters( 'the_content', $post_lunch_snack ) );
123
+					if ( ! empty($post_lunch_snack)) {
124
+						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
125
+						echo wp_kses_post(apply_filters('the_content', $post_lunch_snack));
126 126
 						echo '</div>';
127 127
 					}
128 128
 
@@ -130,24 +130,24 @@  discard block
 block discarded – undo
130 130
 						'meal_id'   => $meal_id,
131 131
 						'meal_time' => 'lunch',
132 132
 					);
133
-					lsx_hp_meal_plan_recipes( $args );
133
+					lsx_hp_meal_plan_recipes($args);
134 134
 					?>
135 135
 					</div>
136 136
 					<div class="col-md-4 eating-column">
137 137
 						<?php
138
-						if ( ! empty( $pre_dinner_snack ) ) {
139
-							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
140
-							echo wp_kses_post( apply_filters( 'the_content', $pre_dinner_snack ) );
138
+						if ( ! empty($pre_dinner_snack)) {
139
+							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
140
+							echo wp_kses_post(apply_filters('the_content', $pre_dinner_snack));
141 141
 							echo '</div>';
142 142
 						}
143
-						if ( ! empty( $dinner ) ) {
144
-							echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Dinner', 'lsx-health-plan' ) . '</h3>';
145
-							echo wp_kses_post( apply_filters( 'the_content', $dinner ) );
143
+						if ( ! empty($dinner)) {
144
+							echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Dinner', 'lsx-health-plan') . '</h3>';
145
+							echo wp_kses_post(apply_filters('the_content', $dinner));
146 146
 							echo '</div>';
147 147
 						}
148
-						if ( ! empty( $post_dinner_snack ) ) {
149
-							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
150
-							echo wp_kses_post( apply_filters( 'the_content', $post_dinner_snack ) );
148
+						if ( ! empty($post_dinner_snack)) {
149
+							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
150
+							echo wp_kses_post(apply_filters('the_content', $post_dinner_snack));
151 151
 							echo '</div>';
152 152
 						}
153 153
 
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 							'meal_id'   => $meal_id,
156 156
 							'meal_time' => 'dinner',
157 157
 						);
158
-						lsx_hp_meal_plan_recipes( $args );
158
+						lsx_hp_meal_plan_recipes($args);
159 159
 						?>
160 160
 					</div>
161 161
 				</div>
Please login to merge, or discard this patch.
templates/tab-content-workout.php 2 patches
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -28,24 +28,24 @@  discard block
 block discarded – undo
28 28
 
29 29
 	<div class="entry-content">
30 30
 		<?php
31
-			wp_link_pages(
32
-				array(
33
-					'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
34
-					'after'       => '</div></div>',
35
-					'link_before' => '<span>',
36
-					'link_after'  => '</span>',
37
-				)
38
-			);
39
-		?>
31
+               wp_link_pages(
32
+                    array(
33
+                         'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
34
+                         'after'       => '</div></div>',
35
+                         'link_before' => '<span>',
36
+                         'link_after'  => '</span>',
37
+                    )
38
+               );
39
+          ?>
40 40
 		<div class="single-plan-inner workout-content">
41 41
 			<?php
42
-			if ( is_singular( 'workout' ) ) { ?>
42
+               if ( is_singular( 'workout' ) ) { ?>
43 43
 				<div class="single-plan-section-title workout title-lined">
44 44
 					<?php lsx_get_svg_icon( 'work.svg' ); ?>
45 45
 					<h2><?php the_title(); ?></h2>
46 46
 					<?php if ( class_exists( 'LSX_Sharing' ) ) {
47
-						lsx_content_sharing();
48
-					} ?>
47
+                              lsx_content_sharing();
48
+                         } ?>
49 49
 				</div>
50 50
 			<?php } else { ?>
51 51
 				<div class="single-plan-section-title workout title-lined">
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
 				</div>
55 55
 			<?php } ?>
56 56
 			<?php
57
-			if ( lsx_health_plan_has_warmup() && ( ! is_singular( 'workout' ) ) ) {
58
-				?>
57
+               if ( lsx_health_plan_has_warmup() && ( ! is_singular( 'workout' ) ) ) {
58
+                    ?>
59 59
 				<div class="workout-instructions">
60 60
 					<div class="row">
61 61
 						<div class="col-md-12">
@@ -67,8 +67,8 @@  discard block
 block discarded – undo
67 67
 					</div>
68 68
 				</div>
69 69
 				<?php
70
-			}
71
-			?>
70
+               }
71
+               ?>
72 72
 
73 73
 			<?php lsx_health_plan_workout_sets(); ?>
74 74
 		</div>
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 <?php } ?>
85 85
 <?php
86 86
 if ( ! empty( $connected_articles ) ) {
87
-	lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
87
+     lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
88 88
 }
89 89
 ?>
90 90
 
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@  discard block
 block discarded – undo
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
 
@@ -39,29 +39,29 @@  discard block
 block discarded – undo
39 39
 		?>
40 40
 		<div class="single-plan-inner workout-content">
41 41
 			<?php
42
-			if ( is_singular( 'workout' ) ) { ?>
42
+			if (is_singular('workout')) { ?>
43 43
 				<div class="single-plan-section-title workout title-lined">
44
-					<?php lsx_get_svg_icon( 'work.svg' ); ?>
44
+					<?php lsx_get_svg_icon('work.svg'); ?>
45 45
 					<h2><?php the_title(); ?></h2>
46
-					<?php if ( class_exists( 'LSX_Sharing' ) ) {
46
+					<?php if (class_exists('LSX_Sharing')) {
47 47
 						lsx_content_sharing();
48 48
 					} ?>
49 49
 				</div>
50 50
 			<?php } else { ?>
51 51
 				<div class="single-plan-section-title workout title-lined">
52
-					<?php lsx_get_svg_icon( 'work.svg' ); ?>
53
-					<h2><?php esc_html_e( 'My Workout', 'lsx-health-plan' ); ?></h2>
52
+					<?php lsx_get_svg_icon('work.svg'); ?>
53
+					<h2><?php esc_html_e('My Workout', 'lsx-health-plan'); ?></h2>
54 54
 				</div>
55 55
 			<?php } ?>
56 56
 			<?php
57
-			if ( lsx_health_plan_has_warmup() && ( ! is_singular( 'workout' ) ) ) {
57
+			if (lsx_health_plan_has_warmup() && ( ! is_singular('workout'))) {
58 58
 				?>
59 59
 				<div class="workout-instructions">
60 60
 					<div class="row">
61 61
 						<div class="col-md-12">
62 62
 							<div class="content-intro">
63
-								<h3><?php esc_html_e( "Don't forget your warm up!", 'lsx-health-plan' ); ?></h3>
64
-								<p><?php esc_html_e( 'Be sure to do the warm-up before every workout session.', 'lsx-health-plan' ); ?></p>
63
+								<h3><?php esc_html_e("Don't forget your warm up!", 'lsx-health-plan'); ?></h3>
64
+								<p><?php esc_html_e('Be sure to do the warm-up before every workout session.', 'lsx-health-plan'); ?></p>
65 65
 							</div>
66 66
 						</div>
67 67
 					</div>
@@ -77,14 +77,14 @@  discard block
 block discarded – undo
77 77
 	<?php lsx_entry_bottom(); ?>
78 78
 
79 79
 </article><!-- #post-## -->
80
-<?php if ( is_singular( $workout ) ) { ?>
80
+<?php if (is_singular($workout)) { ?>
81 81
 	<div  class="back-plan-btn">
82
-		<a class="btn" href="/<?php echo $archive_workout; ?>"><?php esc_html_e( 'Back to workouts', 'lsx-health-plan' ); ?></a>
82
+		<a class="btn" href="/<?php echo $archive_workout; ?>"><?php esc_html_e('Back to workouts', 'lsx-health-plan'); ?></a>
83 83
 	</div>
84 84
 <?php } ?>
85 85
 <?php
86
-if ( ! empty( $connected_articles ) ) {
87
-	lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
86
+if ( ! empty($connected_articles)) {
87
+	lsx_hp_single_related($connected_articles, __('Related articles', 'lsx-health-plan'));
88 88
 }
89 89
 ?>
90 90
 
Please login to merge, or discard this patch.
templates/tab-content-meal.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -26,13 +26,13 @@  discard block
 block discarded – undo
26 26
 	<div class="entry-content">
27 27
 		<div class="single-plan-inner meal-content">
28 28
 			<?php
29
-			if ( is_singular( 'meal' ) ) { ?>
29
+               if ( is_singular( 'meal' ) ) { ?>
30 30
 				<div class="single-plan-section-title meal-plan title-lined">
31 31
 					<?php lsx_get_svg_icon( 'meal.svg' ); ?>
32 32
 					<h2><?php the_title(); ?></h2>
33 33
 					<?php if ( class_exists( 'LSX_Sharing' ) ) {
34
-						lsx_content_sharing();
35
-					} ?>
34
+                              lsx_content_sharing();
35
+                         } ?>
36 36
 				</div>
37 37
 			<?php } else { ?>
38 38
 				<div class="single-plan-section-title meal-plan title-lined">
@@ -53,20 +53,20 @@  discard block
 block discarded – undo
53 53
 	<a class="btn border-btn" href="/<?php echo $archive_meals; ?>"><?php esc_html_e( 'Back to meals', 'lsx-health-plan' ); ?></a>
54 54
 
55 55
 	<?php
56
-	// Shoping list
57
-	$shopping_list = get_post_meta( get_the_ID(), 'meal_shopping_list', true );
58
-	if ( ! empty( $shopping_list ) ) {
59
-		?>
56
+     // Shoping list
57
+     $shopping_list = get_post_meta( get_the_ID(), 'meal_shopping_list', true );
58
+     if ( ! empty( $shopping_list ) ) {
59
+          ?>
60 60
 		<a class="btn border-btn btn-shopping" href="<?php echo esc_url( get_page_link( $shopping_list ) ); ?>" target="_blank"><?php esc_html_e( 'Download Shopping List', 'lsx-health-plan' ); ?><i class="fa fa-download" aria-hidden="true"></i></a>
61 61
 	<?php
62
-	}
62
+     }
63 63
 
64
-	?>
64
+     ?>
65 65
 </div>
66 66
 
67 67
 <?php
68 68
 if ( ! empty( $connected_articles ) ) {
69
-	lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
69
+     lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
70 70
 }
71 71
 ?>
72 72
 
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@  discard block
 block discarded – undo
7 7
 
8 8
 // Getting translated endpoint.
9 9
 
10
-$archive_meals = \lsx_health_plan\functions\get_option( 'endpoint_meal_archive', 'meals' );
11
-$meal          = \lsx_health_plan\functions\get_option( 'endpoint_meal', 'meal' );
10
+$archive_meals = \lsx_health_plan\functions\get_option('endpoint_meal_archive', 'meals');
11
+$meal          = \lsx_health_plan\functions\get_option('endpoint_meal', 'meal');
12 12
 
13
-$connected_members  = get_post_meta( get_the_ID(), ( $meal . '_connected_team_member' ), true );
14
-$connected_articles = get_post_meta( get_the_ID(), ( $meal . '_connected_articles' ), true );
13
+$connected_members  = get_post_meta(get_the_ID(), ($meal . '_connected_team_member'), true);
14
+$connected_articles = get_post_meta(get_the_ID(), ($meal . '_connected_articles'), true);
15 15
 
16 16
 ?>
17 17
 
@@ -26,18 +26,18 @@  discard block
 block discarded – undo
26 26
 	<div class="entry-content">
27 27
 		<div class="single-plan-inner meal-content">
28 28
 			<?php
29
-			if ( is_singular( 'meal' ) ) { ?>
29
+			if (is_singular('meal')) { ?>
30 30
 				<div class="single-plan-section-title meal-plan title-lined">
31
-					<?php lsx_get_svg_icon( 'meal.svg' ); ?>
31
+					<?php lsx_get_svg_icon('meal.svg'); ?>
32 32
 					<h2><?php the_title(); ?></h2>
33
-					<?php if ( class_exists( 'LSX_Sharing' ) ) {
33
+					<?php if (class_exists('LSX_Sharing')) {
34 34
 						lsx_content_sharing();
35 35
 					} ?>
36 36
 				</div>
37 37
 			<?php } else { ?>
38 38
 				<div class="single-plan-section-title meal-plan title-lined">
39
-					<?php lsx_get_svg_icon( 'meal.svg' ); ?>
40
-					<h2><?php esc_html_e( 'My Meal Plan', 'lsx-health-plan' ); ?> <?php the_title(); ?></h2>
39
+					<?php lsx_get_svg_icon('meal.svg'); ?>
40
+					<h2><?php esc_html_e('My Meal Plan', 'lsx-health-plan'); ?> <?php the_title(); ?></h2>
41 41
 				</div>
42 42
 			<?php } ?>
43 43
 
@@ -50,14 +50,14 @@  discard block
 block discarded – undo
50 50
 </article><!-- #post-## -->
51 51
 
52 52
 <div  class="back-plan-btn">
53
-	<a class="btn border-btn" href="/<?php echo $archive_meals; ?>"><?php esc_html_e( 'Back to meals', 'lsx-health-plan' ); ?></a>
53
+	<a class="btn border-btn" href="/<?php echo $archive_meals; ?>"><?php esc_html_e('Back to meals', 'lsx-health-plan'); ?></a>
54 54
 
55 55
 	<?php
56 56
 	// Shoping list
57
-	$shopping_list = get_post_meta( get_the_ID(), 'meal_shopping_list', true );
58
-	if ( ! empty( $shopping_list ) ) {
57
+	$shopping_list = get_post_meta(get_the_ID(), 'meal_shopping_list', true);
58
+	if ( ! empty($shopping_list)) {
59 59
 		?>
60
-		<a class="btn border-btn btn-shopping" href="<?php echo esc_url( get_page_link( $shopping_list ) ); ?>" target="_blank"><?php esc_html_e( 'Download Shopping List', 'lsx-health-plan' ); ?><i class="fa fa-download" aria-hidden="true"></i></a>
60
+		<a class="btn border-btn btn-shopping" href="<?php echo esc_url(get_page_link($shopping_list)); ?>" target="_blank"><?php esc_html_e('Download Shopping List', 'lsx-health-plan'); ?><i class="fa fa-download" aria-hidden="true"></i></a>
61 61
 	<?php
62 62
 	}
63 63
 
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
 </div>
66 66
 
67 67
 <?php
68
-if ( ! empty( $connected_articles ) ) {
69
-	lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
68
+if ( ! empty($connected_articles)) {
69
+	lsx_hp_single_related($connected_articles, __('Related articles', 'lsx-health-plan'));
70 70
 }
71 71
 ?>
72 72
 
Please login to merge, or discard this patch.