@@ -32,11 +32,11 @@ discard block |
||
32 | 32 | * Constructor |
33 | 33 | */ |
34 | 34 | public function __construct() { |
35 | - add_action( 'admin_enqueue_scripts', array( $this, 'assets' ) ); |
|
36 | - add_action( 'admin_menu', array( $this, 'register_menu' ) ); |
|
37 | - add_action( 'lsx_hp_help', array( $this, 'header' ), 10 ); |
|
38 | - add_action( 'lsx_hp_help', array( $this, 'body' ), 20 ); |
|
39 | - add_action( 'lsx_hp_help', array( $this, 'footer' ), 30 ); |
|
35 | + add_action('admin_enqueue_scripts', array($this, 'assets')); |
|
36 | + add_action('admin_menu', array($this, 'register_menu')); |
|
37 | + add_action('lsx_hp_help', array($this, 'header'), 10); |
|
38 | + add_action('lsx_hp_help', array($this, 'body'), 20); |
|
39 | + add_action('lsx_hp_help', array($this, 'footer'), 30); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public static function get_instance() { |
50 | 50 | // If the single instance hasn't been set, set it now. |
51 | - if ( null === self::$instance ) { |
|
51 | + if (null === self::$instance) { |
|
52 | 52 | self::$instance = new self(); |
53 | 53 | } |
54 | 54 | return self::$instance; |
@@ -64,10 +64,10 @@ discard block |
||
64 | 64 | * |
65 | 65 | * @param string $hook_suffix the current page hook suffix. |
66 | 66 | */ |
67 | - public function assets( $hook_suffix ) { |
|
68 | - if ( 'plan_page_help' === $hook_suffix ) { |
|
69 | - wp_enqueue_style( 'lsx-hp-help-screen', LSX_HEALTH_PLAN_URL . 'assets/css/help.css', array(), LSX_HEALTH_PLAN_VER ); |
|
70 | - wp_style_add_data( 'lsx-hp-help-screen', 'rtl', 'replace' ); |
|
67 | + public function assets($hook_suffix) { |
|
68 | + if ('plan_page_help' === $hook_suffix) { |
|
69 | + wp_enqueue_style('lsx-hp-help-screen', LSX_HEALTH_PLAN_URL . 'assets/css/help.css', array(), LSX_HEALTH_PLAN_VER); |
|
70 | + wp_style_add_data('lsx-hp-help-screen', 'rtl', 'replace'); |
|
71 | 71 | } |
72 | 72 | } |
73 | 73 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * @subpackage hp-help-page |
79 | 79 | */ |
80 | 80 | public function register_menu() { |
81 | - add_submenu_page( 'edit.php?post_type=plan', __( 'Help', 'lsx-health-plan' ), __( 'Help', 'lsx-health-plan' ), 'manage_options', 'help', array( $this, 'screen' ) ); |
|
81 | + add_submenu_page('edit.php?post_type=plan', __('Help', 'lsx-health-plan'), __('Help', 'lsx-health-plan'), 'manage_options', 'help', array($this, 'screen')); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * @hooked lsx_hp_help_body - 20 |
103 | 103 | * @hooked lsx_hp_help_footer - 30 |
104 | 104 | */ |
105 | - do_action( 'lsx_hp_help' ); |
|
105 | + do_action('lsx_hp_help'); |
|
106 | 106 | ?> |
107 | 107 | </div> |
108 | 108 | <?php |
@@ -117,8 +117,8 @@ discard block |
||
117 | 117 | public function header() { |
118 | 118 | ?> |
119 | 119 | <div class="enrich"> |
120 | - <h2><?php esc_html_e( 'LightSpeed’s LSX Health Plugin', 'lsx-health-plan' ); ?></h2> |
|
121 | - <p><?php esc_html_e( "Thank you for using the LSX Health plugin. All of us here at LightSpeed appreciate your ongoing support and we can't wait to see what people create with the plugin. We're committed to ensuring you have all the help you need to make the most of the plugin.", 'lsx-health-plan' ); ?></p> |
|
120 | + <h2><?php esc_html_e('LightSpeed’s LSX Health Plugin', 'lsx-health-plan'); ?></h2> |
|
121 | + <p><?php esc_html_e("Thank you for using the LSX Health plugin. All of us here at LightSpeed appreciate your ongoing support and we can't wait to see what people create with the plugin. We're committed to ensuring you have all the help you need to make the most of the plugin.", 'lsx-health-plan'); ?></p> |
|
122 | 122 | </div> |
123 | 123 | <?php |
124 | 124 | } |
@@ -1,19 +1,19 @@ discard block |
||
1 | 1 | <?php |
2 | - $lsx_hp_documentation = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/getting-started/' ); |
|
3 | - $lsx_hp_settings = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/installation/' ); |
|
4 | - $lsx_hp_features = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/' ); |
|
5 | - $version = esc_html( LSX_HEALTH_PLAN_VER ); |
|
2 | + $lsx_hp_documentation = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/getting-started/'); |
|
3 | + $lsx_hp_settings = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/installation/'); |
|
4 | + $lsx_hp_features = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/'); |
|
5 | + $version = esc_html(LSX_HEALTH_PLAN_VER); |
|
6 | 6 | |
7 | 7 | //Product Urls |
8 | - $health_plan_link = esc_url( 'https://wordpress.org/plugins/lsx-health-plan/' ); |
|
9 | - $lsx_hp_plans = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/plans/' ); |
|
10 | - $lsx_hp_weeks = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/plans/#week' ); |
|
11 | - $lsx_hp_tips = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/tips/' ); |
|
12 | - $lsx_hp_workouts = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/workouts/' ); |
|
13 | - $lsx_hp_exercises = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/exercises/' ); |
|
14 | - $lsx_hp_meals = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/meals/' ); |
|
15 | - $lsx_hp_recipes = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/recipes/' ); |
|
16 | - $lsx_hp_shortcodes = esc_url( 'https://www.lsdev.biz/lsx/documentation/lsx-health/shortcodes/' ); |
|
8 | + $health_plan_link = esc_url('https://wordpress.org/plugins/lsx-health-plan/'); |
|
9 | + $lsx_hp_plans = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/plans/'); |
|
10 | + $lsx_hp_weeks = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/plans/#week'); |
|
11 | + $lsx_hp_tips = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/tips/'); |
|
12 | + $lsx_hp_workouts = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/workouts/'); |
|
13 | + $lsx_hp_exercises = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/exercises/'); |
|
14 | + $lsx_hp_meals = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/meals/'); |
|
15 | + $lsx_hp_recipes = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/recipes/'); |
|
16 | + $lsx_hp_shortcodes = esc_url('https://www.lsdev.biz/lsx/documentation/lsx-health/shortcodes/'); |
|
17 | 17 | |
18 | 18 | ?> |
19 | 19 | |
@@ -22,27 +22,27 @@ discard block |
||
22 | 22 | <div class="row"> |
23 | 23 | <div class="col-md-12"> |
24 | 24 | <div class="box documentation"> |
25 | - <h2><?php esc_html_e( 'Getting Support', 'lsx-health-plan' ); ?></h2> |
|
26 | - <p><?php esc_html_e( 'Our website\'s', 'lsx-health-plan' ); ?> <a href="<?php echo wp_kses_post( $lsx_hp_documentation ); ?>" target="_blank"><?php esc_html_e( 'documentation', 'lsx-health-plan' ); ?></a> <?php esc_html_e( 'page is a great place to start to learn how to configure and customize our plugin. Here are some links to some of the key settings and modules:', 'lsx-health-plan' ); ?></p> |
|
25 | + <h2><?php esc_html_e('Getting Support', 'lsx-health-plan'); ?></h2> |
|
26 | + <p><?php esc_html_e('Our website\'s', 'lsx-health-plan'); ?> <a href="<?php echo wp_kses_post($lsx_hp_documentation); ?>" target="_blank"><?php esc_html_e('documentation', 'lsx-health-plan'); ?></a> <?php esc_html_e('page is a great place to start to learn how to configure and customize our plugin. Here are some links to some of the key settings and modules:', 'lsx-health-plan'); ?></p> |
|
27 | 27 | |
28 | 28 | <ul> |
29 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_documentation ); ?>" target="_blank"><?php esc_html_e( 'Getting Started:', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( 'Setup a new Health Plan site from scratch.', 'lsx-health-plan' ); ?></li> |
|
30 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_settings ); ?>" target="_blank"><?php esc_html_e( 'Settings overview:', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( 'A thorough walkthrough of The Health Plan site configuration options and the settings that are available to you.', 'lsx-health-plan' ); ?></li> |
|
31 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_features ); ?>" target="_blank"><?php esc_html_e( 'Features overview:', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( 'A complete look at the features you can expect to see right out of the box as well as how to use them.', 'lsx-health-plan' ); ?></li> |
|
29 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_documentation); ?>" target="_blank"><?php esc_html_e('Getting Started:', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('Setup a new Health Plan site from scratch.', 'lsx-health-plan'); ?></li> |
|
30 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_settings); ?>" target="_blank"><?php esc_html_e('Settings overview:', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('A thorough walkthrough of The Health Plan site configuration options and the settings that are available to you.', 'lsx-health-plan'); ?></li> |
|
31 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_features); ?>" target="_blank"><?php esc_html_e('Features overview:', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('A complete look at the features you can expect to see right out of the box as well as how to use them.', 'lsx-health-plan'); ?></li> |
|
32 | 32 | |
33 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_plans ); ?>" target="_blank"><?php esc_html_e( 'Plans', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Parent Post Type)', 'lsx-health-plan' ); ?></li> |
|
34 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_weeks ); ?>" target="_blank"><?php esc_html_e( 'Weeks', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Global Taxonomy)', 'lsx-health-plan' ); ?></li> |
|
35 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_tips ); ?>" target="_blank"><?php esc_html_e( 'Tips', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Global Post type connected to all other post types)', 'lsx-health-plan' ); ?></li> |
|
36 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_workouts ); ?>" target="_blank"><?php esc_html_e( 'Workouts', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Plans Child Post Type)', 'lsx-health-plan' ); ?></li> |
|
37 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_exercises ); ?>" target="_blank"><?php esc_html_e( 'Exercises', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Workouts Child Post Type)', 'lsx-health-plan' ); ?></li> |
|
38 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_exercises ); ?>" target="_blank"><?php esc_html_e( 'Exercise Types', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Exercises Taxonomy)', 'lsx-health-plan' ); ?></li> |
|
39 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_exercises ); ?>" target="_blank"><?php esc_html_e( 'Equipment', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Exercises Taxonomy)', 'lsx-health-plan' ); ?></li> |
|
40 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_exercises ); ?>" target="_blank"><?php esc_html_e( 'Muscle Group ', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Exercises Taxonomy)', 'lsx-health-plan' ); ?></li> |
|
41 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_meals ); ?>" target="_blank"><?php esc_html_e( 'Meals', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Plans Child Post Type)', 'lsx-health-plan' ); ?></li> |
|
42 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_recipes ); ?>" target="_blank"><?php esc_html_e( 'Recipes', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Meal Plans Child Post Type)', 'lsx-health-plan' ); ?></li> |
|
43 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_recipes ); ?>" target="_blank"><?php esc_html_e( 'Types', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Recipes Taxonomy)', 'lsx-health-plan' ); ?></li> |
|
44 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_recipes ); ?>" target="_blank"><?php esc_html_e( 'Cuisines', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( '(Recipes Taxonomy)', 'lsx-health-plan' ); ?></li> |
|
45 | - <li><strong><a href="<?php echo wp_kses_post( $lsx_hp_shortcodes ); ?>" target="_blank"><?php esc_html_e( 'Shortcodes:', 'lsx-health-plan' ); ?></a></strong> <?php esc_html_e( 'Insert content blocks for any content type.', 'lsx-health-plan' ); ?></li> |
|
33 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_plans); ?>" target="_blank"><?php esc_html_e('Plans', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Parent Post Type)', 'lsx-health-plan'); ?></li> |
|
34 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_weeks); ?>" target="_blank"><?php esc_html_e('Weeks', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Global Taxonomy)', 'lsx-health-plan'); ?></li> |
|
35 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_tips); ?>" target="_blank"><?php esc_html_e('Tips', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Global Post type connected to all other post types)', 'lsx-health-plan'); ?></li> |
|
36 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_workouts); ?>" target="_blank"><?php esc_html_e('Workouts', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Plans Child Post Type)', 'lsx-health-plan'); ?></li> |
|
37 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_exercises); ?>" target="_blank"><?php esc_html_e('Exercises', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Workouts Child Post Type)', 'lsx-health-plan'); ?></li> |
|
38 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_exercises); ?>" target="_blank"><?php esc_html_e('Exercise Types', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Exercises Taxonomy)', 'lsx-health-plan'); ?></li> |
|
39 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_exercises); ?>" target="_blank"><?php esc_html_e('Equipment', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Exercises Taxonomy)', 'lsx-health-plan'); ?></li> |
|
40 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_exercises); ?>" target="_blank"><?php esc_html_e('Muscle Group ', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Exercises Taxonomy)', 'lsx-health-plan'); ?></li> |
|
41 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_meals); ?>" target="_blank"><?php esc_html_e('Meals', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Plans Child Post Type)', 'lsx-health-plan'); ?></li> |
|
42 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_recipes); ?>" target="_blank"><?php esc_html_e('Recipes', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Meal Plans Child Post Type)', 'lsx-health-plan'); ?></li> |
|
43 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_recipes); ?>" target="_blank"><?php esc_html_e('Types', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Recipes Taxonomy)', 'lsx-health-plan'); ?></li> |
|
44 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_recipes); ?>" target="_blank"><?php esc_html_e('Cuisines', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('(Recipes Taxonomy)', 'lsx-health-plan'); ?></li> |
|
45 | + <li><strong><a href="<?php echo wp_kses_post($lsx_hp_shortcodes); ?>" target="_blank"><?php esc_html_e('Shortcodes:', 'lsx-health-plan'); ?></a></strong> <?php esc_html_e('Insert content blocks for any content type.', 'lsx-health-plan'); ?></li> |
|
46 | 46 | </ul> |
47 | 47 | </div> |
48 | 48 | </div> |
@@ -55,17 +55,17 @@ discard block |
||
55 | 55 | <div class="row"> |
56 | 56 | <div class="col-md-12"> |
57 | 57 | <div class="box info"> |
58 | - <h2><?php esc_html_e( 'Health Plan', 'lsx-health-plan' ); ?></h2> |
|
58 | + <h2><?php esc_html_e('Health Plan', 'lsx-health-plan'); ?></h2> |
|
59 | 59 | |
60 | 60 | <ul> |
61 | - <li><strong><?php esc_html_e( 'Latest Version:', 'lsx-health-plan' ); ?></strong> <?php echo esc_attr( $version ); ?></li> |
|
62 | - <li><strong><?php esc_html_e( 'Requires:', 'lsx-health-plan' ); ?></strong> <?php esc_html_e( 'WordPress 5.0+', 'lsx-health-plan' ); ?></li> |
|
63 | - <li><strong><?php esc_html_e( 'Tested up to:', 'lsx-health-plan' ); ?></strong> <?php esc_html_e( 'WordPress 5.0', 'lsx-health-plan' ); ?></li> |
|
61 | + <li><strong><?php esc_html_e('Latest Version:', 'lsx-health-plan'); ?></strong> <?php echo esc_attr($version); ?></li> |
|
62 | + <li><strong><?php esc_html_e('Requires:', 'lsx-health-plan'); ?></strong> <?php esc_html_e('WordPress 5.0+', 'lsx-health-plan'); ?></li> |
|
63 | + <li><strong><?php esc_html_e('Tested up to:', 'lsx-health-plan'); ?></strong> <?php esc_html_e('WordPress 5.0', 'lsx-health-plan'); ?></li> |
|
64 | 64 | </ul> |
65 | 65 | |
66 | 66 | <div class="more-button"> |
67 | - <a href="<?php echo wp_kses_post( $health_plan_link ); ?>" target="_blank" class="button button-primary"> |
|
68 | - <?php esc_html_e( 'Visit plugin website', 'lsx-health-plan' ); ?> |
|
67 | + <a href="<?php echo wp_kses_post($health_plan_link); ?>" target="_blank" class="button button-primary"> |
|
68 | + <?php esc_html_e('Visit plugin website', 'lsx-health-plan'); ?> |
|
69 | 69 | </a> |
70 | 70 | </div> |
71 | 71 | </div> |
@@ -75,9 +75,9 @@ discard block |
||
75 | 75 | <div class="row"> |
76 | 76 | <div class="col-md-12"> |
77 | 77 | <div class="box news"> |
78 | - <h3><?php esc_html_e( 'Support', 'lsx-health-plan' ); ?></h3> |
|
79 | - <p><?php esc_html_e( 'If the documentation is not getting you where you need to be, you can contact us directly for support and assistance.', 'lsx-health-plan' ); ?></p> |
|
80 | - <p><?php esc_html_e( 'You can contact us for support at', 'lsx-health-plan' ); ?> <a href="mailto:[email protected]"><?php esc_html_e( '[email protected].', 'lsx-health-plan' ); ?></a></p> |
|
78 | + <h3><?php esc_html_e('Support', 'lsx-health-plan'); ?></h3> |
|
79 | + <p><?php esc_html_e('If the documentation is not getting you where you need to be, you can contact us directly for support and assistance.', 'lsx-health-plan'); ?></p> |
|
80 | + <p><?php esc_html_e('You can contact us for support at', 'lsx-health-plan'); ?> <a href="mailto:[email protected]"><?php esc_html_e('[email protected].', 'lsx-health-plan'); ?></a></p> |
|
81 | 81 | </div> |
82 | 82 | </div> |
83 | 83 | </div> |
@@ -22,14 +22,14 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function __construct() { |
24 | 24 | // Before Output. |
25 | - add_action( 'wp_enqueue_scripts', array( $this, 'assets' ), 5 ); |
|
26 | - add_filter( 'wp_kses_allowed_html', array( $this, 'allow_html_tags_attributes' ), 100, 2 ); |
|
25 | + add_action('wp_enqueue_scripts', array($this, 'assets'), 5); |
|
26 | + add_filter('wp_kses_allowed_html', array($this, 'allow_html_tags_attributes'), 100, 2); |
|
27 | 27 | |
28 | 28 | // Output. |
29 | - add_action( 'body_class', array( $this, 'body_classes' ) ); |
|
30 | - add_filter( 'lsx_global_header_title', array( $this, 'single_title' ), 200, 1 ); |
|
31 | - add_action( 'wp_head', array( $this, 'remove_single_footer' ), 99 ); |
|
32 | - add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 9 ); |
|
29 | + add_action('body_class', array($this, 'body_classes')); |
|
30 | + add_filter('lsx_global_header_title', array($this, 'single_title'), 200, 1); |
|
31 | + add_action('wp_head', array($this, 'remove_single_footer'), 99); |
|
32 | + add_filter('get_the_archive_title', array($this, 'get_the_archive_title'), 9); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public static function get_instance() { |
43 | 43 | // If the single instance hasn't been set, set it now. |
44 | - if ( null === self::$instance ) { |
|
44 | + if (null === self::$instance) { |
|
45 | 45 | self::$instance = new self(); |
46 | 46 | } |
47 | 47 | return self::$instance; |
@@ -54,21 +54,21 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function assets() { |
56 | 56 | |
57 | - if ( is_post_type_archive( 'plan' ) && false === \lsx_health_plan\functions\plan\is_filters_disabled() ) { |
|
58 | - wp_enqueue_script( 'isotope', LSX_HEALTH_PLAN_URL . 'assets/js/vendor/isotope.pkgd.min.js', array( 'jquery' ), null, LSX_HEALTH_PLAN_URL, true ); |
|
57 | + if (is_post_type_archive('plan') && false === \lsx_health_plan\functions\plan\is_filters_disabled()) { |
|
58 | + wp_enqueue_script('isotope', LSX_HEALTH_PLAN_URL . 'assets/js/vendor/isotope.pkgd.min.js', array('jquery'), null, LSX_HEALTH_PLAN_URL, true); |
|
59 | 59 | } |
60 | 60 | |
61 | - wp_enqueue_style( 'lsx-health-plan', LSX_HEALTH_PLAN_URL . 'assets/css/lsx-health-plan.css', array(), LSX_HEALTH_PLAN_VER ); |
|
62 | - wp_style_add_data( 'lsx-health-plan', 'rtl', 'replace' ); |
|
63 | - wp_enqueue_script( 'lsx-health-plan-scripts', LSX_HEALTH_PLAN_URL . 'assets/js/src/lsx-health-plan-admin.js', array( 'jquery' ) ); |
|
61 | + wp_enqueue_style('lsx-health-plan', LSX_HEALTH_PLAN_URL . 'assets/css/lsx-health-plan.css', array(), LSX_HEALTH_PLAN_VER); |
|
62 | + wp_style_add_data('lsx-health-plan', 'rtl', 'replace'); |
|
63 | + wp_enqueue_script('lsx-health-plan-scripts', LSX_HEALTH_PLAN_URL . 'assets/js/src/lsx-health-plan-admin.js', array('jquery')); |
|
64 | 64 | |
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
68 | 68 | * Adds the iframe and the progress HTML tags to the allowed WordPress list. |
69 | 69 | */ |
70 | - public function allow_html_tags_attributes( $tags, $context ) { |
|
71 | - if ( 'post' === $context ) { |
|
70 | + public function allow_html_tags_attributes($tags, $context) { |
|
71 | + if ('post' === $context) { |
|
72 | 72 | $tags['iframe'] = array( |
73 | 73 | 'src' => true, |
74 | 74 | 'height' => true, |
@@ -91,31 +91,31 @@ discard block |
||
91 | 91 | * @param array $classes |
92 | 92 | * @return void |
93 | 93 | */ |
94 | - public function body_classes( $classes = array() ) { |
|
94 | + public function body_classes($classes = array()) { |
|
95 | 95 | global $post; |
96 | 96 | |
97 | - if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'lsx_health_plan_my_profile_block' ) ) { |
|
97 | + if (isset($post->post_content) && has_shortcode($post->post_content, 'lsx_health_plan_my_profile_block')) { |
|
98 | 98 | $classes[] = 'my-plan-shortcode'; |
99 | 99 | } |
100 | 100 | |
101 | - if ( is_single() && is_singular( 'plan' ) ) { |
|
101 | + if (is_single() && is_singular('plan')) { |
|
102 | 102 | $args = array( |
103 | 103 | 'post_parent' => get_the_ID(), |
104 | 104 | 'post_type' => 'plan', |
105 | 105 | ); |
106 | 106 | |
107 | 107 | $post_id = get_the_ID(); |
108 | - $has_children = get_children( $args ); |
|
109 | - $has_parent = wp_get_post_parent_id( $post_id ); |
|
108 | + $has_children = get_children($args); |
|
109 | + $has_parent = wp_get_post_parent_id($post_id); |
|
110 | 110 | |
111 | - if ( ! empty( $has_children ) ) { |
|
111 | + if ( ! empty($has_children)) { |
|
112 | 112 | $plan_type_class = 'parent-plan-page'; |
113 | - if ( 0 !== $has_parent ) { |
|
113 | + if (0 !== $has_parent) { |
|
114 | 114 | $plan_type_class = 'parent-sub-plan-page'; |
115 | 115 | } |
116 | 116 | } else { |
117 | 117 | $plan_type_class = 'unique-plan-page'; |
118 | - if ( 0 !== $has_parent ) { |
|
118 | + if (0 !== $has_parent) { |
|
119 | 119 | $plan_type_class = 'child-plan-page'; |
120 | 120 | } |
121 | 121 | } |
@@ -127,16 +127,16 @@ discard block |
||
127 | 127 | /** |
128 | 128 | * Remove the single recipe and exercise title |
129 | 129 | */ |
130 | - public function single_title( $title ) { |
|
130 | + public function single_title($title) { |
|
131 | 131 | |
132 | - if ( is_single() && is_singular( 'recipe' ) ) { |
|
132 | + if (is_single() && is_singular('recipe')) { |
|
133 | 133 | |
134 | - $title = __( 'Recipe', 'lsx-health-plan' ); |
|
134 | + $title = __('Recipe', 'lsx-health-plan'); |
|
135 | 135 | } |
136 | 136 | |
137 | - if ( is_single() && is_singular( 'exercise' ) ) { |
|
137 | + if (is_single() && is_singular('exercise')) { |
|
138 | 138 | |
139 | - $title = __( 'Exercise', 'lsx-health-plan' ); |
|
139 | + $title = __('Exercise', 'lsx-health-plan'); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | return $title; |
@@ -148,8 +148,8 @@ discard block |
||
148 | 148 | * @return void |
149 | 149 | */ |
150 | 150 | public function remove_single_footer() { |
151 | - if ( ( is_single() && is_singular( array( 'exercise', 'recipe', 'workout', 'meal' ) ) ) || ( is_archive() && is_post_type_archive( array( 'exercise', 'recipe', 'workout', 'meal' ) ) )) { |
|
152 | - remove_action( 'lsx_footer_before', 'lsx_add_footer_sidebar_area' ); |
|
151 | + if ((is_single() && is_singular(array('exercise', 'recipe', 'workout', 'meal'))) || (is_archive() && is_post_type_archive(array('exercise', 'recipe', 'workout', 'meal')))) { |
|
152 | + remove_action('lsx_footer_before', 'lsx_add_footer_sidebar_area'); |
|
153 | 153 | } |
154 | 154 | } |
155 | 155 | /** |
@@ -158,16 +158,16 @@ discard block |
||
158 | 158 | * @param string $title the term title. |
159 | 159 | * @return string |
160 | 160 | */ |
161 | - public function get_the_archive_title( $title ) { |
|
162 | - if ( is_post_type_archive( 'recipe' ) ) { |
|
163 | - $title = __( 'Recipes', 'lsx-health-plan' ); |
|
161 | + public function get_the_archive_title($title) { |
|
162 | + if (is_post_type_archive('recipe')) { |
|
163 | + $title = __('Recipes', 'lsx-health-plan'); |
|
164 | 164 | } |
165 | - if ( is_post_type_archive( 'exercise' ) ) { |
|
166 | - $title = __( 'Exercises', 'lsx-health-plan' ); |
|
165 | + if (is_post_type_archive('exercise')) { |
|
166 | + $title = __('Exercises', 'lsx-health-plan'); |
|
167 | 167 | } |
168 | - if ( is_tax() ) { |
|
168 | + if (is_tax()) { |
|
169 | 169 | $queried_object = get_queried_object(); |
170 | - if ( isset( $queried_object->name ) ) { |
|
170 | + if (isset($queried_object->name)) { |
|
171 | 171 | $title = $queried_object->name; |
172 | 172 | } |
173 | 173 | } |
@@ -26,11 +26,11 @@ discard block |
||
26 | 26 | * Constructor |
27 | 27 | */ |
28 | 28 | public function __construct() { |
29 | - add_filter( 'woocommerce_order_button_text', array( $this, 'checkout_button_text' ), 10, 1 ); |
|
29 | + add_filter('woocommerce_order_button_text', array($this, 'checkout_button_text'), 10, 1); |
|
30 | 30 | |
31 | 31 | // Cart Messages. |
32 | - add_action( 'lsx_content_wrap_before', array( $this, 'cart_notices' ) ); |
|
33 | - add_filter( 'wc_add_to_cart_message_html', array( $this, 'add_to_cart_message' ), 10, 3 ); |
|
32 | + add_action('lsx_content_wrap_before', array($this, 'cart_notices')); |
|
33 | + add_filter('wc_add_to_cart_message_html', array($this, 'add_to_cart_message'), 10, 3); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | */ |
43 | 43 | public static function get_instance() { |
44 | 44 | // If the single instance hasn't been set, set it now. |
45 | - if ( null === self::$instance ) { |
|
45 | + if (null === self::$instance) { |
|
46 | 46 | self::$instance = new self(); |
47 | 47 | } |
48 | 48 | return self::$instance; |
@@ -54,8 +54,8 @@ discard block |
||
54 | 54 | * @param string $label |
55 | 55 | * @return void |
56 | 56 | */ |
57 | - public function checkout_button_text( $label = '' ) { |
|
58 | - $label = __( 'Place order', 'lsx-health-plan' ); |
|
57 | + public function checkout_button_text($label = '') { |
|
58 | + $label = __('Place order', 'lsx-health-plan'); |
|
59 | 59 | return $label; |
60 | 60 | } |
61 | 61 | |
@@ -67,9 +67,9 @@ discard block |
||
67 | 67 | * @param string $variation_id |
68 | 68 | * @return void |
69 | 69 | */ |
70 | - public function add_plan_id_to_cart( $cart_item_data, $product_id, $variation_id ) { |
|
71 | - $plan_id = filter_input( INPUT_GET, 'plan_id' ); |
|
72 | - if ( empty( $plan_id ) || '' === $plan_id ) { |
|
70 | + public function add_plan_id_to_cart($cart_item_data, $product_id, $variation_id) { |
|
71 | + $plan_id = filter_input(INPUT_GET, 'plan_id'); |
|
72 | + if (empty($plan_id) || '' === $plan_id) { |
|
73 | 73 | return $cart_item_data; |
74 | 74 | } |
75 | 75 | $cart_item_data['plan_id'] = $plan_id; |
@@ -82,10 +82,10 @@ discard block |
||
82 | 82 | * @return void |
83 | 83 | */ |
84 | 84 | public function cart_notices() { |
85 | - if ( function_exists( 'woocommerce_output_all_notices' ) && is_post_type_archive( 'plan' ) ) { |
|
86 | - echo wp_kses_post( '<div class="col-md-12 col-sm-12 woocommerce-notices-wrapper">' ); |
|
85 | + if (function_exists('woocommerce_output_all_notices') && is_post_type_archive('plan')) { |
|
86 | + echo wp_kses_post('<div class="col-md-12 col-sm-12 woocommerce-notices-wrapper">'); |
|
87 | 87 | wc_print_notices(); |
88 | - echo wp_kses_post( '</div>' ); |
|
88 | + echo wp_kses_post('</div>'); |
|
89 | 89 | } |
90 | 90 | } |
91 | 91 | |
@@ -97,19 +97,19 @@ discard block |
||
97 | 97 | * @param boolean $show_qty |
98 | 98 | * @return string |
99 | 99 | */ |
100 | - public function add_to_cart_message( $message, $products, $show_qty ) { |
|
101 | - if ( isset( $_GET['plan_id'] ) ) { // @codingStandardsIgnoreLine. |
|
102 | - $this->plan_id = sanitize_text_field( wp_slash( $_GET['plan_id'] ) ); // @codingStandardsIgnoreLine. |
|
100 | + public function add_to_cart_message($message, $products, $show_qty) { |
|
101 | + if (isset($_GET['plan_id'])) { // @codingStandardsIgnoreLine. |
|
102 | + $this->plan_id = sanitize_text_field(wp_slash($_GET['plan_id'])); // @codingStandardsIgnoreLine. |
|
103 | 103 | |
104 | - $title = '<strong>' . get_the_title( $this->plan_id ) . '</strong>'; |
|
105 | - $title = sprintf( _n( '%s has been added to your cart.', '%s have been added to your cart.', 1, 'lsx-health-plan' ), $title ); |
|
104 | + $title = '<strong>' . get_the_title($this->plan_id) . '</strong>'; |
|
105 | + $title = sprintf(_n('%s has been added to your cart.', '%s have been added to your cart.', 1, 'lsx-health-plan'), $title); |
|
106 | 106 | |
107 | 107 | // Output success messages. |
108 | - if ( 'yes' === get_option( 'woocommerce_cart_redirect_after_add' ) ) { |
|
109 | - $return_to = apply_filters( 'woocommerce_continue_shopping_redirect', wc_get_raw_referer() ? wp_validate_redirect( wc_get_raw_referer(), false ) : wc_get_page_permalink( 'shop' ) ); |
|
110 | - $message = sprintf( '<a href="%s" tabindex="1" class="btn button wc-forward">%s</a> %s', esc_url( $return_to ), esc_html__( 'Continue shopping', 'lsx-health-plan' ), $title ); |
|
108 | + if ('yes' === get_option('woocommerce_cart_redirect_after_add')) { |
|
109 | + $return_to = apply_filters('woocommerce_continue_shopping_redirect', wc_get_raw_referer() ? wp_validate_redirect(wc_get_raw_referer(), false) : wc_get_page_permalink('shop')); |
|
110 | + $message = sprintf('<a href="%s" tabindex="1" class="btn button wc-forward">%s</a> %s', esc_url($return_to), esc_html__('Continue shopping', 'lsx-health-plan'), $title); |
|
111 | 111 | } else { |
112 | - $message = sprintf( '<a href="%s" tabindex="1" class="btn button wc-forward">%s</a> %s', esc_url( wc_get_cart_url() ), esc_html__( 'View cart', 'lsx-health-plan' ), $title ); |
|
112 | + $message = sprintf('<a href="%s" tabindex="1" class="btn button wc-forward">%s</a> %s', esc_url(wc_get_cart_url()), esc_html__('View cart', 'lsx-health-plan'), $title); |
|
113 | 113 | } |
114 | 114 | } |
115 | 115 | return $message; |
@@ -27,13 +27,13 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function __construct() { |
29 | 29 | $this->default_types = array( |
30 | - \lsx_health_plan\functions\get_option( 'endpoint_meal', 'meal' ), |
|
31 | - \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ), |
|
32 | - \lsx_health_plan\functions\get_option( 'endpoint_recipe_single', 'recipe' ), |
|
33 | - \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ), |
|
34 | - \lsx_health_plan\functions\get_option( 'endpoint_plan', 'plan' ), |
|
30 | + \lsx_health_plan\functions\get_option('endpoint_meal', 'meal'), |
|
31 | + \lsx_health_plan\functions\get_option('endpoint_exercise_single', 'exercise'), |
|
32 | + \lsx_health_plan\functions\get_option('endpoint_recipe_single', 'recipe'), |
|
33 | + \lsx_health_plan\functions\get_option('endpoint_workout', 'workout'), |
|
34 | + \lsx_health_plan\functions\get_option('endpoint_plan', 'plan'), |
|
35 | 35 | ); |
36 | - add_action( 'cmb2_admin_init', array( $this, 'related_articles_metabox' ) ); |
|
36 | + add_action('cmb2_admin_init', array($this, 'related_articles_metabox')); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public static function get_instance() { |
47 | 47 | // If the single instance hasn't been set, set it now. |
48 | - if ( null === self::$instance ) { |
|
48 | + if (null === self::$instance) { |
|
49 | 49 | self::$instance = new self(); |
50 | 50 | } |
51 | 51 | return self::$instance; |
@@ -55,12 +55,12 @@ discard block |
||
55 | 55 | * Define the related articles member metabox and field configurations. |
56 | 56 | */ |
57 | 57 | public function related_articles_metabox() { |
58 | - foreach ( $this->default_types as $type => $default_type ) { |
|
58 | + foreach ($this->default_types as $type => $default_type) { |
|
59 | 59 | $cmb = new_cmb2_box( |
60 | 60 | array( |
61 | 61 | 'id' => $default_type . '_related_articles_metabox', |
62 | - 'title' => __( 'Related Articles', 'lsx-health-plan' ), |
|
63 | - 'object_types' => array( $default_type ), // Post type. |
|
62 | + 'title' => __('Related Articles', 'lsx-health-plan'), |
|
63 | + 'object_types' => array($default_type), // Post type. |
|
64 | 64 | 'context' => 'normal', |
65 | 65 | 'priority' => 'low', |
66 | 66 | 'show_names' => true, |
@@ -69,15 +69,15 @@ discard block |
||
69 | 69 | |
70 | 70 | $cmb->add_field( |
71 | 71 | array( |
72 | - 'name' => __( 'Related Articles', 'lsx-health-plan' ), |
|
73 | - 'desc' => __( 'Connect the related articles that applies to this ', 'lsx-health-plan' ) . $default_type, |
|
72 | + 'name' => __('Related Articles', 'lsx-health-plan'), |
|
73 | + 'desc' => __('Connect the related articles that applies to this ', 'lsx-health-plan') . $default_type, |
|
74 | 74 | 'id' => $default_type . '_connected_articles', |
75 | 75 | 'type' => 'post_search_ajax', |
76 | 76 | 'limit' => 3, |
77 | 77 | 'sortable' => true, |
78 | 78 | 'query_args' => array( |
79 | - 'post_type' => array( 'post' ), |
|
80 | - 'post_status' => array( 'publish' ), |
|
79 | + 'post_type' => array('post'), |
|
80 | + 'post_status' => array('publish'), |
|
81 | 81 | 'posts_per_page' => 3, |
82 | 82 | ), |
83 | 83 | ) |
@@ -5,17 +5,17 @@ discard block |
||
5 | 5 | $muscle_group = lsx_health_plan_muscle_group_equipment(); |
6 | 6 | |
7 | 7 | ?> |
8 | -<?php if ( ( ! empty( $type ) ) || ( ! empty( $equipment ) ) || ( ! empty( $muscle_group ) ) ) { ?> |
|
8 | +<?php if (( ! empty($type)) || ( ! empty($equipment)) || ( ! empty($muscle_group))) { ?> |
|
9 | 9 | <table class="exercise-table"> |
10 | 10 | <tbody> |
11 | 11 | <?php |
12 | - if ( ! empty( $type ) ) { |
|
12 | + if ( ! empty($type)) { |
|
13 | 13 | ?> |
14 | 14 | <tr class="types"> |
15 | - <td><?php esc_html_e( 'Type:', 'lsx-health-plan' ); ?> </td> |
|
15 | + <td><?php esc_html_e('Type:', 'lsx-health-plan'); ?> </td> |
|
16 | 16 | <td> |
17 | 17 | <?php |
18 | - echo wp_kses_post( $type ); |
|
18 | + echo wp_kses_post($type); |
|
19 | 19 | ?> |
20 | 20 | </td> |
21 | 21 | </tr> |
@@ -23,13 +23,13 @@ discard block |
||
23 | 23 | } |
24 | 24 | ?> |
25 | 25 | <?php |
26 | - if ( ! empty( $muscle_group ) ) { |
|
26 | + if ( ! empty($muscle_group)) { |
|
27 | 27 | ?> |
28 | 28 | <tr class="muscle-group"> |
29 | - <td><?php esc_html_e( 'Muscle Group:', 'lsx-health-plan' ); ?> </td> |
|
29 | + <td><?php esc_html_e('Muscle Group:', 'lsx-health-plan'); ?> </td> |
|
30 | 30 | <td> |
31 | 31 | <?php |
32 | - echo wp_kses_post( $muscle_group ); |
|
32 | + echo wp_kses_post($muscle_group); |
|
33 | 33 | ?> |
34 | 34 | </td> |
35 | 35 | </tr> |
@@ -37,13 +37,13 @@ discard block |
||
37 | 37 | } |
38 | 38 | ?> |
39 | 39 | <?php |
40 | - if ( ! empty( $equipment ) ) { |
|
40 | + if ( ! empty($equipment)) { |
|
41 | 41 | ?> |
42 | 42 | <tr class="equipment"> |
43 | - <td><?php esc_html_e( 'Equipment:', 'lsx-health-plan' ); ?> </td> |
|
43 | + <td><?php esc_html_e('Equipment:', 'lsx-health-plan'); ?> </td> |
|
44 | 44 | <td> |
45 | 45 | <?php |
46 | - echo wp_kses_post( $equipment ); |
|
46 | + echo wp_kses_post($equipment); |
|
47 | 47 | ?> |
48 | 48 | </td> |
49 | 49 | </tr> |
@@ -17,29 +17,29 @@ discard block |
||
17 | 17 | $link_close = ''; |
18 | 18 | |
19 | 19 | // Check for shortcode overrides. |
20 | -if ( null !== $shortcode_args ) { |
|
21 | - if ( isset( $shortcode_args['columns'] ) ) { |
|
20 | +if (null !== $shortcode_args) { |
|
21 | + if (isset($shortcode_args['columns'])) { |
|
22 | 22 | $column_class = $shortcode_args['columns']; |
23 | - $column_class = \lsx_health_plan\functions\column_class( $column_class ); |
|
23 | + $column_class = \lsx_health_plan\functions\column_class($column_class); |
|
24 | 24 | } |
25 | - if ( isset( $shortcode_args['link'] ) ) { |
|
25 | + if (isset($shortcode_args['link'])) { |
|
26 | 26 | $link_setting = $shortcode_args['link']; |
27 | 27 | // Setup our link and content. |
28 | - switch ( $link_setting ) { |
|
28 | + switch ($link_setting) { |
|
29 | 29 | case 'single': |
30 | - $link_html = '<a href="' . get_permalink( $group['connected_exercises'] ) . '">'; |
|
30 | + $link_html = '<a href="' . get_permalink($group['connected_exercises']) . '">'; |
|
31 | 31 | $link_close = '</a>'; |
32 | 32 | break; |
33 | 33 | |
34 | 34 | case 'modal': |
35 | 35 | $link_html = '<a class="btn border-btn" data-toggle="modal" href="#workout-exercise-modal-' . $group['connected_exercises'] . '">'; |
36 | 36 | $link_close = '</a>'; |
37 | - $modal_content_setting = \lsx_health_plan\functions\get_option( 'workout_tab_modal_content', 'excerpt' ); |
|
37 | + $modal_content_setting = \lsx_health_plan\functions\get_option('workout_tab_modal_content', 'excerpt'); |
|
38 | 38 | $modal_args = array( |
39 | 39 | 'modal_content' => $modal_content_setting, |
40 | 40 | ); |
41 | 41 | // We call the button to register the modal, but we do not output it. |
42 | - lsx_health_plan_workout_exercise_button( $group['connected_exercises'], $group, false, $modal_args ); |
|
42 | + lsx_health_plan_workout_exercise_button($group['connected_exercises'], $group, false, $modal_args); |
|
43 | 43 | break; |
44 | 44 | |
45 | 45 | case 'none': |
@@ -49,28 +49,28 @@ discard block |
||
49 | 49 | break; |
50 | 50 | } |
51 | 51 | } |
52 | - if ( isset( $shortcode_args['description'] ) ) { |
|
52 | + if (isset($shortcode_args['description'])) { |
|
53 | 53 | $content_setting = $shortcode_args['description']; |
54 | 54 | } |
55 | 55 | } |
56 | 56 | |
57 | 57 | ?> |
58 | 58 | |
59 | -<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr( $column_class ); ?> has-content-<?php echo esc_attr( $content_setting ); ?>"> |
|
59 | +<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr($column_class); ?> has-content-<?php echo esc_attr($content_setting); ?>"> |
|
60 | 60 | <article class="lsx-slot box-shadow"> |
61 | 61 | <?php lsx_entry_top(); ?> |
62 | 62 | |
63 | 63 | <div class="exercise-feature-img"> |
64 | - <a href="<?php echo esc_url( get_permalink() ); ?>"> |
|
64 | + <a href="<?php echo esc_url(get_permalink()); ?>"> |
|
65 | 65 | <?php |
66 | 66 | $featured_image = get_the_post_thumbnail(); |
67 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
68 | - the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
67 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
68 | + the_post_thumbnail('lsx-thumbnail-square', array( |
|
69 | 69 | 'class' => 'aligncenter', |
70 | - ) ); |
|
70 | + )); |
|
71 | 71 | } else { |
72 | 72 | ?> |
73 | - <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
|
73 | + <img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>"> |
|
74 | 74 | <?php |
75 | 75 | } |
76 | 76 | ?> |
@@ -78,24 +78,24 @@ discard block |
||
78 | 78 | </div> |
79 | 79 | <div class="content-box exercise-content-box white-bg"> |
80 | 80 | <div class="title-lined"> |
81 | - <?php lsx_health_plan_exercise_title( '<h3 class="exercise-title">', '</h3>' ); ?> |
|
81 | + <?php lsx_health_plan_exercise_title('<h3 class="exercise-title">', '</h3>'); ?> |
|
82 | 82 | <?php lsx_health_plan_exercise_data(); ?> |
83 | 83 | </div> |
84 | 84 | <?php |
85 | - if ( '' !== $content_setting && 'excerpt' === $content_setting ) { |
|
86 | - if ( ! has_excerpt() ) { |
|
87 | - $content = wp_trim_words( get_the_content(), 20 ); |
|
85 | + if ('' !== $content_setting && 'excerpt' === $content_setting) { |
|
86 | + if ( ! has_excerpt()) { |
|
87 | + $content = wp_trim_words(get_the_content(), 20); |
|
88 | 88 | $content = '<p>' . $content . '</p>'; |
89 | 89 | } else { |
90 | - $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
90 | + $content = apply_filters('the_excerpt', get_the_excerpt()); |
|
91 | 91 | } |
92 | - echo wp_kses_post( $content ); |
|
92 | + echo wp_kses_post($content); |
|
93 | 93 | } |
94 | - if ( '' !== $content_setting && 'full' === $content_setting ) { |
|
94 | + if ('' !== $content_setting && 'full' === $content_setting) { |
|
95 | 95 | the_content(); |
96 | 96 | } |
97 | 97 | ?> |
98 | - <a href="<?php echo esc_url( get_permalink() ); ?>" class="btn border-btn"><?php esc_html_e( 'See exercise', 'lsx-health-plan' ); ?></a> |
|
98 | + <a href="<?php echo esc_url(get_permalink()); ?>" class="btn border-btn"><?php esc_html_e('See exercise', 'lsx-health-plan'); ?></a> |
|
99 | 99 | </div> |
100 | 100 | <?php lsx_entry_bottom(); ?> |
101 | 101 | </article> |
@@ -6,29 +6,29 @@ |
||
6 | 6 | */ |
7 | 7 | |
8 | 8 | |
9 | -$this_post_type = get_post_type( get_the_ID() ); |
|
9 | +$this_post_type = get_post_type(get_the_ID()); |
|
10 | 10 | |
11 | -$connected_tips = get_post_meta( get_the_ID(), ( $this_post_type . '_connected_tips' ), true ); |
|
11 | +$connected_tips = get_post_meta(get_the_ID(), ($this_post_type . '_connected_tips'), true); |
|
12 | 12 | |
13 | 13 | ?> |
14 | 14 | <div id="lsx-tips-shortcode" class="daily-plan-block"> |
15 | 15 | <div class="lsx-tips-shortcode lsx-tips-slider slick-slider slick-dotted" > |
16 | 16 | <?php |
17 | 17 | if (is_array($connected_tips) || is_object($connected_tips)) { |
18 | - foreach ( $connected_tips as $tip ) { |
|
19 | - $tip_link = get_permalink( $tip ); |
|
20 | - $tip_name = get_the_title( $tip ); |
|
21 | - $tip_content = get_post_field( 'post_content', $tip ); |
|
18 | + foreach ($connected_tips as $tip) { |
|
19 | + $tip_link = get_permalink($tip); |
|
20 | + $tip_name = get_the_title($tip); |
|
21 | + $tip_content = get_post_field('post_content', $tip); |
|
22 | 22 | $icon = LSX_HEALTH_PLAN_URL . 'assets/images/tips-icon.svg'; |
23 | 23 | ?> |
24 | 24 | <div class="content-box diet-tip-wrapper quick-tip"> |
25 | 25 | <div class="row"> |
26 | 26 | <div class="col-xs-2"> |
27 | - <img loading="lazy" src="<?php echo esc_url( $icon ); ?>" alt="tip"/> |
|
27 | + <img loading="lazy" src="<?php echo esc_url($icon); ?>" alt="tip"/> |
|
28 | 28 | </div> |
29 | 29 | <div class="col-xs-10"> |
30 | - <h3 class="tip-title"><?php echo esc_html( $tip_name ); ?></h3> |
|
31 | - <?php echo wp_kses_post( $tip_content ); ?> |
|
30 | + <h3 class="tip-title"><?php echo esc_html($tip_name); ?></h3> |
|
31 | + <?php echo wp_kses_post($tip_content); ?> |
|
32 | 32 | </div> |
33 | 33 | </div> |
34 | 34 | </div> |
@@ -14,13 +14,13 @@ discard block |
||
14 | 14 | $redirect = '/content-restricted/?r=' . $page_id . '&wcm_redirect_to=archive&wcm_redirect_id=' . $page_id; |
15 | 15 | ?> |
16 | 16 | |
17 | - <div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
17 | + <div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
18 | 18 | |
19 | 19 | <?php lsx_content_before(); ?> |
20 | 20 | |
21 | 21 | <!-- Begining restricted content --> |
22 | 22 | <?php |
23 | - if ( current_user_can( 'wc_memberships_view_restricted_post_content', $post_id ) ) { |
|
23 | + if (current_user_can('wc_memberships_view_restricted_post_content', $post_id)) { |
|
24 | 24 | ?> |
25 | 25 | <main id="main" role="main"> |
26 | 26 | |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | |
29 | 29 | <div class="post-wrapper archive-plan"> |
30 | 30 | <div class="row"> |
31 | - <?php if ( have_posts() ) : ?> |
|
31 | + <?php if (have_posts()) : ?> |
|
32 | 32 | <?php |
33 | - while ( have_posts() ) : |
|
33 | + while (have_posts()) : |
|
34 | 34 | the_post(); |
35 | 35 | ?> |
36 | 36 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | <?php else : ?> |
42 | 42 | |
43 | - <?php get_template_part( 'partials/content', 'none' ); ?> |
|
43 | + <?php get_template_part('partials/content', 'none'); ?> |
|
44 | 44 | |
45 | 45 | <?php endif; ?> |
46 | 46 | </div> |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | |
53 | 53 | <?php |
54 | 54 | } else { |
55 | - wp_redirect( $redirect ); |
|
55 | + wp_redirect($redirect); |
|
56 | 56 | exit; |
57 | 57 | } |
58 | 58 | ?> |