@@ -7,18 +7,18 @@ discard block |
||
| 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 |
||
| 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 |
@@ -28,24 +28,24 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -26,13 +26,13 @@ discard block |
||
| 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 |
||
| 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 | |