@@ -6,13 +6,13 @@ discard block |
||
| 6 | 6 | * @subpackage bbpress |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | global $bbpress; |
| 14 | 14 | |
| 15 | -if ( ! function_exists( 'lsx_bbpress_scripts_add_styles' ) ) : |
|
| 15 | +if ( ! function_exists('lsx_bbpress_scripts_add_styles')) : |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * bbPress enqueue styles. |
@@ -21,19 +21,19 @@ discard block |
||
| 21 | 21 | * @subpackage bbpress |
| 22 | 22 | */ |
| 23 | 23 | function lsx_bbpress_scripts_add_styles() { |
| 24 | - wp_enqueue_style( 'bbpress-lsx', get_template_directory_uri() . '/assets/css/bb-press/bb-press.css', array( 'lsx_main' ), LSX_VERSION ); |
|
| 25 | - wp_style_add_data( 'bbpress-lsx', 'rtl', 'replace' ); |
|
| 24 | + wp_enqueue_style('bbpress-lsx', get_template_directory_uri() . '/assets/css/bb-press/bb-press.css', array('lsx_main'), LSX_VERSION); |
|
| 25 | + wp_style_add_data('bbpress-lsx', 'rtl', 'replace'); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | - add_action( 'wp_enqueue_scripts', 'lsx_bbpress_scripts_add_styles' ); |
|
| 28 | + add_action('wp_enqueue_scripts', 'lsx_bbpress_scripts_add_styles'); |
|
| 29 | 29 | |
| 30 | 30 | endif; |
| 31 | 31 | |
| 32 | 32 | /**** Remove "Archives:" from the forums archive title. ******/ |
| 33 | 33 | |
| 34 | -add_filter( 'get_the_archive_title', 'modify_archive_title', 10, 1 ); |
|
| 34 | +add_filter('get_the_archive_title', 'modify_archive_title', 10, 1); |
|
| 35 | 35 | |
| 36 | -function modify_archive_title( $title ) { |
|
| 37 | - $title = __( 'Forums', 'lsx' ); |
|
| 36 | +function modify_archive_title($title) { |
|
| 37 | + $title = __('Forums', 'lsx'); |
|
| 38 | 38 | return $title; |
| 39 | 39 | } |
@@ -6,11 +6,11 @@ discard block |
||
| 6 | 6 | * @subpackage the-events-calendar |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | -if ( ! function_exists( 'lsx_tec_scripts_add_styles' ) ) : |
|
| 13 | +if ( ! function_exists('lsx_tec_scripts_add_styles')) : |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * The Events Calendar enqueue styles. |
@@ -19,15 +19,15 @@ discard block |
||
| 19 | 19 | * @subpackage the-events-calendar |
| 20 | 20 | */ |
| 21 | 21 | function lsx_tec_scripts_add_styles() { |
| 22 | - wp_enqueue_style( 'the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar/the-events-calendar.css', array( 'lsx_main' ), LSX_VERSION ); |
|
| 23 | - wp_style_add_data( 'the-events-calendar-lsx', 'rtl', 'replace' ); |
|
| 22 | + wp_enqueue_style('the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar/the-events-calendar.css', array('lsx_main'), LSX_VERSION); |
|
| 23 | + wp_style_add_data('the-events-calendar-lsx', 'rtl', 'replace'); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - add_action( 'wp_enqueue_scripts', 'lsx_tec_scripts_add_styles' ); |
|
| 26 | + add_action('wp_enqueue_scripts', 'lsx_tec_scripts_add_styles'); |
|
| 27 | 27 | |
| 28 | 28 | endif; |
| 29 | 29 | |
| 30 | -if ( ! function_exists( 'lsx_tec_theme_wrapper_start' ) ) : |
|
| 30 | +if ( ! function_exists('lsx_tec_theme_wrapper_start')) : |
|
| 31 | 31 | |
| 32 | 32 | /** |
| 33 | 33 | * The Events Calendar wrapper start. |
@@ -37,17 +37,17 @@ discard block |
||
| 37 | 37 | */ |
| 38 | 38 | function lsx_tec_theme_wrapper_start() { |
| 39 | 39 | lsx_content_wrap_before(); |
| 40 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
| 40 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
| 41 | 41 | lsx_content_before(); |
| 42 | 42 | echo '<main id="main" class="site-main" role="main">'; |
| 43 | 43 | lsx_content_top(); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - add_action( 'tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9 ); |
|
| 46 | + add_action('tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9); |
|
| 47 | 47 | |
| 48 | 48 | endif; |
| 49 | 49 | |
| 50 | -if ( ! function_exists( 'lsx_tec_theme_wrapper_end' ) ) : |
|
| 50 | +if ( ! function_exists('lsx_tec_theme_wrapper_end')) : |
|
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * The Events Calendar wrapper end. |
@@ -63,11 +63,11 @@ discard block |
||
| 63 | 63 | lsx_content_wrap_after(); |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - add_action( 'tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11 ); |
|
| 66 | + add_action('tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11); |
|
| 67 | 67 | |
| 68 | 68 | endif; |
| 69 | 69 | |
| 70 | -if ( ! function_exists( 'lsx_tec_global_header_title' ) ) : |
|
| 70 | +if ( ! function_exists('lsx_tec_global_header_title')) : |
|
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | 73 | * Move the events title into the global header |
@@ -75,98 +75,98 @@ discard block |
||
| 75 | 75 | * @package lsx |
| 76 | 76 | * @subpackage the-events-calendar |
| 77 | 77 | */ |
| 78 | - function lsx_tec_global_header_title( $title ) { |
|
| 78 | + function lsx_tec_global_header_title($title) { |
|
| 79 | 79 | |
| 80 | - if ( tribe_is_community_edit_event_page() ) { |
|
| 80 | + if (tribe_is_community_edit_event_page()) { |
|
| 81 | 81 | |
| 82 | - $is_route = get_query_var( 'WP_Route' ); |
|
| 83 | - switch ( $is_route ) { |
|
| 82 | + $is_route = get_query_var('WP_Route'); |
|
| 83 | + switch ($is_route) { |
|
| 84 | 84 | case 'ce-edit-route': |
| 85 | - $title = apply_filters( 'tribe_ce_edit_event_page_title', __( 'Edit an Event', 'lsx' ) ); |
|
| 85 | + $title = apply_filters('tribe_ce_edit_event_page_title', __('Edit an Event', 'lsx')); |
|
| 86 | 86 | break; |
| 87 | 87 | |
| 88 | 88 | case 'ce-edit-organizer-route': |
| 89 | - $title = __( 'Edit an Organizer', 'lsx' ); |
|
| 89 | + $title = __('Edit an Organizer', 'lsx'); |
|
| 90 | 90 | break; |
| 91 | 91 | |
| 92 | 92 | case 'ce-edit-venue-route': |
| 93 | - $title = __( 'Edit a Venue', 'lsx' ); |
|
| 93 | + $title = __('Edit a Venue', 'lsx'); |
|
| 94 | 94 | break; |
| 95 | 95 | |
| 96 | 96 | default: |
| 97 | - $title = apply_filters( 'tribe_ce_submit_event_page_title', __( 'Submit an Event', 'lsx' ) ); |
|
| 97 | + $title = apply_filters('tribe_ce_submit_event_page_title', __('Submit an Event', 'lsx')); |
|
| 98 | 98 | break; |
| 99 | 99 | } |
| 100 | - } else if ( tribe_is_community_my_events_page() ) { |
|
| 101 | - $title = apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) ); |
|
| 102 | - } else if ( tribe_is_event() ) { |
|
| 100 | + } else if (tribe_is_community_my_events_page()) { |
|
| 101 | + $title = apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx')); |
|
| 102 | + } else if (tribe_is_event()) { |
|
| 103 | 103 | $title = tribe_get_events_title(); |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | //Only disable the title after we have retrieved it |
| 107 | - add_filter( 'tribe_get_events_title', 'lsx_text_disable_body_title', 200, 1 ); |
|
| 107 | + add_filter('tribe_get_events_title', 'lsx_text_disable_body_title', 200, 1); |
|
| 108 | 108 | |
| 109 | - if ( is_singular( 'tribe_events' ) ) { |
|
| 110 | - add_filter( 'the_title', 'lsx_text_disable_body_title', 200, 1 ); |
|
| 109 | + if (is_singular('tribe_events')) { |
|
| 110 | + add_filter('the_title', 'lsx_text_disable_body_title', 200, 1); |
|
| 111 | 111 | } |
| 112 | 112 | return $title; |
| 113 | 113 | } |
| 114 | - add_filter( 'lsx_global_header_title', 'lsx_tec_global_header_title', 200, 1 ); |
|
| 114 | + add_filter('lsx_global_header_title', 'lsx_tec_global_header_title', 200, 1); |
|
| 115 | 115 | |
| 116 | 116 | endif; |
| 117 | 117 | |
| 118 | -if ( ! function_exists( 'lsx_text_disable_body_title' ) ) : |
|
| 118 | +if ( ! function_exists('lsx_text_disable_body_title')) : |
|
| 119 | 119 | /** |
| 120 | 120 | * Disable the events title for the post archive if the dynamic setting is active. |
| 121 | 121 | * @param $title |
| 122 | 122 | * |
| 123 | 123 | * @return string |
| 124 | 124 | */ |
| 125 | - function lsx_text_disable_body_title( $title ) { |
|
| 125 | + function lsx_text_disable_body_title($title) { |
|
| 126 | 126 | $title = ''; |
| 127 | - remove_filter( 'the_title', 'lsx_text_disable_body_title', 200, 1 ); |
|
| 127 | + remove_filter('the_title', 'lsx_text_disable_body_title', 200, 1); |
|
| 128 | 128 | return $title; |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | endif; |
| 132 | 132 | |
| 133 | -if ( ! function_exists( 'lsx_tec_breadcrumb_filter' ) ) : |
|
| 133 | +if ( ! function_exists('lsx_tec_breadcrumb_filter')) : |
|
| 134 | 134 | /** |
| 135 | 135 | * Fixes the community events breadcrumb |
| 136 | 136 | * |
| 137 | 137 | * @package lsx |
| 138 | 138 | * @subpackage the-events-calendar |
| 139 | 139 | */ |
| 140 | - function lsx_tec_breadcrumb_filter( $crumbs ) { |
|
| 140 | + function lsx_tec_breadcrumb_filter($crumbs) { |
|
| 141 | 141 | |
| 142 | - if ( tribe_is_venue() || tribe_is_organizer() || tribe_is_community_edit_event_page() || tribe_is_community_my_events_page() ) { |
|
| 142 | + if (tribe_is_venue() || tribe_is_organizer() || tribe_is_community_edit_event_page() || tribe_is_community_my_events_page()) { |
|
| 143 | 143 | $new_crumbs = array(); |
| 144 | 144 | $new_crumbs[0] = $crumbs[0]; |
| 145 | 145 | |
| 146 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
| 146 | + if (function_exists('woocommerce_breadcrumb')) { |
|
| 147 | 147 | $new_crumbs[1] = array( |
| 148 | - 0 => __( 'Events', 'lsx' ), |
|
| 149 | - 1 => get_post_type_archive_link( 'tribe_events' ), |
|
| 148 | + 0 => __('Events', 'lsx'), |
|
| 149 | + 1 => get_post_type_archive_link('tribe_events'), |
|
| 150 | 150 | ); |
| 151 | 151 | } else { |
| 152 | 152 | $new_crumbs[1] = array( |
| 153 | - 'text' => __( 'Events', 'lsx' ), |
|
| 154 | - 'url' => get_post_type_archive_link( 'tribe_events' ), |
|
| 153 | + 'text' => __('Events', 'lsx'), |
|
| 154 | + 'url' => get_post_type_archive_link('tribe_events'), |
|
| 155 | 155 | ); |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | - if ( tribe_is_community_my_events_page() ) { |
|
| 158 | + if (tribe_is_community_my_events_page()) { |
|
| 159 | 159 | $new_crumbs[2] = $crumbs[2]; |
| 160 | - } else if ( tribe_is_community_edit_event_page() ) { |
|
| 160 | + } else if (tribe_is_community_edit_event_page()) { |
|
| 161 | 161 | |
| 162 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
| 162 | + if (function_exists('woocommerce_breadcrumb')) { |
|
| 163 | 163 | $new_crumbs[2] = array( |
| 164 | - 0 => apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) ), |
|
| 164 | + 0 => apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx')), |
|
| 165 | 165 | 1 => tribe_community_events_list_events_link( ), |
| 166 | 166 | ); |
| 167 | 167 | } else { |
| 168 | 168 | $new_crumbs[2] = array( |
| 169 | - 'text' => apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) ), |
|
| 169 | + 'text' => apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx')), |
|
| 170 | 170 | 'url' => tribe_community_events_list_events_link( ), |
| 171 | 171 | ); |
| 172 | 172 | } |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | } |
| 180 | 180 | return $crumbs; |
| 181 | 181 | } |
| 182 | - add_filter( 'wpseo_breadcrumb_links', 'lsx_tec_breadcrumb_filter', 30, 1 ); |
|
| 183 | - add_filter( 'woocommerce_get_breadcrumb', 'lsx_tec_breadcrumb_filter', 30, 1 ); |
|
| 182 | + add_filter('wpseo_breadcrumb_links', 'lsx_tec_breadcrumb_filter', 30, 1); |
|
| 183 | + add_filter('woocommerce_get_breadcrumb', 'lsx_tec_breadcrumb_filter', 30, 1); |
|
| 184 | 184 | |
| 185 | 185 | endif; |
@@ -6,11 +6,11 @@ discard block |
||
| 6 | 6 | * @subpackage template-tags |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | -if ( ! function_exists( 'lsx_breadcrumbs' ) ) : |
|
| 13 | +if ( ! function_exists('lsx_breadcrumbs')) : |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Breadcrumbs. |
@@ -19,44 +19,44 @@ discard block |
||
| 19 | 19 | * @subpackage template-tags |
| 20 | 20 | */ |
| 21 | 21 | function lsx_breadcrumbs() { |
| 22 | - if ( ! function_exists( 'yoast_breadcrumb' ) && ! function_exists( 'woocommerce_breadcrumb' ) ) { |
|
| 22 | + if ( ! function_exists('yoast_breadcrumb') && ! function_exists('woocommerce_breadcrumb')) { |
|
| 23 | 23 | return null; |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - $show_on_front = get_option( 'show_on_front' ); |
|
| 26 | + $show_on_front = get_option('show_on_front'); |
|
| 27 | 27 | |
| 28 | - if ( ( 'posts' === $show_on_front && is_home() ) || ( 'page' === $show_on_front && is_front_page() ) ) { |
|
| 28 | + if (('posts' === $show_on_front && is_home()) || ('page' === $show_on_front && is_front_page())) { |
|
| 29 | 29 | return; |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
| 32 | + if (function_exists('woocommerce_breadcrumb')) { |
|
| 33 | 33 | ob_start(); |
| 34 | 34 | |
| 35 | - woocommerce_breadcrumb( array( |
|
| 35 | + woocommerce_breadcrumb(array( |
|
| 36 | 36 | 'wrap_before' => '<div class="breadcrumbs-container breadcrumbs-woocommerce"><div class="container"><div class="row"><div class="col-xs-12">', |
| 37 | 37 | 'wrap_after' => '</div></div></div></div>', |
| 38 | 38 | 'before' => '<span>', |
| 39 | 39 | 'after' => '</span>', |
| 40 | - ) ); |
|
| 40 | + )); |
|
| 41 | 41 | |
| 42 | 42 | $output = ob_get_clean(); |
| 43 | - } elseif ( function_exists( 'yoast_breadcrumb' ) ) { |
|
| 44 | - $output = yoast_breadcrumb( null, null, false ); |
|
| 43 | + } elseif (function_exists('yoast_breadcrumb')) { |
|
| 44 | + $output = yoast_breadcrumb(null, null, false); |
|
| 45 | 45 | $output = '<div class="breadcrumbs-container breadcrumbs-yoast"><div class="container"><div class="row"><div class="col-xs-12">' . $output . '</div></div></div></div>'; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - $output = apply_filters( 'lsx_breadcrumbs', $output ); |
|
| 48 | + $output = apply_filters('lsx_breadcrumbs', $output); |
|
| 49 | 49 | |
| 50 | - echo wp_kses_post( $output ); |
|
| 50 | + echo wp_kses_post($output); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | endif; |
| 54 | 54 | |
| 55 | -add_action( 'lsx_header_after', 'lsx_breadcrumbs', 1 ); |
|
| 55 | +add_action('lsx_header_after', 'lsx_breadcrumbs', 1); |
|
| 56 | 56 | //add_action( 'lsx_banner_inner_bottom', 'lsx_breadcrumbs', 100 ); |
| 57 | 57 | //add_action( 'lsx_global_header_inner_bottom', 'lsx_breadcrumbs', 100 ); |
| 58 | 58 | |
| 59 | -if ( ! function_exists( 'lsx_breadcrumbs_wpseo_seperator_filter' ) ) : |
|
| 59 | +if ( ! function_exists('lsx_breadcrumbs_wpseo_seperator_filter')) : |
|
| 60 | 60 | |
| 61 | 61 | /** |
| 62 | 62 | * Replaces the seperator. |
@@ -64,16 +64,16 @@ discard block |
||
| 64 | 64 | * @package lsx |
| 65 | 65 | * @subpackage template-tags |
| 66 | 66 | */ |
| 67 | - function lsx_breadcrumbs_wpseo_seperator_filter( $seperator ) { |
|
| 67 | + function lsx_breadcrumbs_wpseo_seperator_filter($seperator) { |
|
| 68 | 68 | $seperator = '<i class="fa fa-angle-right" aria-hidden="true"></i>'; |
| 69 | 69 | return $seperator; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | endif; |
| 73 | 73 | |
| 74 | -add_filter( 'wpseo_breadcrumb_separator', 'lsx_breadcrumbs_wpseo_seperator_filter' ); |
|
| 74 | +add_filter('wpseo_breadcrumb_separator', 'lsx_breadcrumbs_wpseo_seperator_filter'); |
|
| 75 | 75 | |
| 76 | -if ( ! function_exists( 'lsx_breadcrumbs_woocommerce_seperator_filter' ) ) : |
|
| 76 | +if ( ! function_exists('lsx_breadcrumbs_woocommerce_seperator_filter')) : |
|
| 77 | 77 | |
| 78 | 78 | /** |
| 79 | 79 | * Replaces the seperator. |
@@ -81,16 +81,16 @@ discard block |
||
| 81 | 81 | * @package lsx |
| 82 | 82 | * @subpackage template-tags |
| 83 | 83 | */ |
| 84 | - function lsx_breadcrumbs_woocommerce_seperator_filter( $defaults ) { |
|
| 84 | + function lsx_breadcrumbs_woocommerce_seperator_filter($defaults) { |
|
| 85 | 85 | $defaults['delimiter'] = '<i class="fa fa-angle-right" aria-hidden="true"></i>'; |
| 86 | 86 | return $defaults; |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | endif; |
| 90 | 90 | |
| 91 | -add_filter( 'woocommerce_breadcrumb_defaults', 'lsx_breadcrumbs_woocommerce_seperator_filter' ); |
|
| 91 | +add_filter('woocommerce_breadcrumb_defaults', 'lsx_breadcrumbs_woocommerce_seperator_filter'); |
|
| 92 | 92 | |
| 93 | -if ( ! function_exists( 'lsx_site_title' ) ) : |
|
| 93 | +if ( ! function_exists('lsx_site_title')) : |
|
| 94 | 94 | |
| 95 | 95 | /** |
| 96 | 96 | * Displays logo when applicable. |
@@ -101,15 +101,15 @@ discard block |
||
| 101 | 101 | function lsx_site_title() { |
| 102 | 102 | ?> |
| 103 | 103 | <div class="site-branding"> |
| 104 | - <h1 class="site-title"><a title="<?php bloginfo( 'name' ); ?>" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> |
|
| 105 | - <p class="site-description"><?php bloginfo( 'description' ); ?></p> |
|
| 104 | + <h1 class="site-title"><a title="<?php bloginfo('name'); ?>" href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1> |
|
| 105 | + <p class="site-description"><?php bloginfo('description'); ?></p> |
|
| 106 | 106 | </div> |
| 107 | 107 | <?php |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | endif; |
| 111 | 111 | |
| 112 | -if ( ! function_exists( 'lsx_post_meta_list_top' ) ) : |
|
| 112 | +if ( ! function_exists('lsx_post_meta_list_top')) : |
|
| 113 | 113 | |
| 114 | 114 | /** |
| 115 | 115 | * Add customisable post meta (post list - above title). |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | |
| 131 | 131 | endif; |
| 132 | 132 | |
| 133 | -if ( ! function_exists( 'lsx_post_meta_single_top' ) ) : |
|
| 133 | +if ( ! function_exists('lsx_post_meta_single_top')) : |
|
| 134 | 134 | |
| 135 | 135 | /** |
| 136 | 136 | * Add customisable post meta (single post - above title). |
@@ -150,11 +150,11 @@ discard block |
||
| 150 | 150 | endif; |
| 151 | 151 | |
| 152 | 152 | //add_action( 'lsx_post_meta_top', 'lsx_post_meta_avatar' ); |
| 153 | -add_action( 'lsx_post_meta_top', 'lsx_post_meta_author' ); |
|
| 154 | -add_action( 'lsx_post_meta_top', 'lsx_post_meta_date' ); |
|
| 155 | -add_action( 'lsx_post_meta_top', 'lsx_post_meta_category' ); |
|
| 153 | +add_action('lsx_post_meta_top', 'lsx_post_meta_author'); |
|
| 154 | +add_action('lsx_post_meta_top', 'lsx_post_meta_date'); |
|
| 155 | +add_action('lsx_post_meta_top', 'lsx_post_meta_category'); |
|
| 156 | 156 | |
| 157 | -if ( ! function_exists( 'lsx_post_meta_single_bottom' ) ) : |
|
| 157 | +if ( ! function_exists('lsx_post_meta_single_bottom')) : |
|
| 158 | 158 | |
| 159 | 159 | /** |
| 160 | 160 | * Add customisable post meta (single post - below title). |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | |
| 174 | 174 | endif; |
| 175 | 175 | |
| 176 | -if ( ! function_exists( 'lsx_post_meta_avatar' ) ) : |
|
| 176 | +if ( ! function_exists('lsx_post_meta_avatar')) : |
|
| 177 | 177 | |
| 178 | 178 | /** |
| 179 | 179 | * Add customisable post meta: author's avatar. |
@@ -183,20 +183,20 @@ discard block |
||
| 183 | 183 | */ |
| 184 | 184 | function lsx_post_meta_avatar() { |
| 185 | 185 | $author = get_the_author(); |
| 186 | - $author_id = get_the_author_meta( 'ID' ); |
|
| 187 | - $author_avatar = get_avatar( $author_id, 80 ); |
|
| 188 | - $author_url = get_author_posts_url( $author_id ); |
|
| 186 | + $author_id = get_the_author_meta('ID'); |
|
| 187 | + $author_avatar = get_avatar($author_id, 80); |
|
| 188 | + $author_url = get_author_posts_url($author_id); |
|
| 189 | 189 | |
| 190 | 190 | printf( |
| 191 | 191 | '<a href="%1$s" class="post-meta-avatar">%2$s</a>', |
| 192 | - esc_url( $author_url ), |
|
| 193 | - wp_kses_post( $author_avatar ) |
|
| 192 | + esc_url($author_url), |
|
| 193 | + wp_kses_post($author_avatar) |
|
| 194 | 194 | ); |
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | endif; |
| 198 | 198 | |
| 199 | -if ( ! function_exists( 'lsx_post_meta_date' ) ) : |
|
| 199 | +if ( ! function_exists('lsx_post_meta_date')) : |
|
| 200 | 200 | |
| 201 | 201 | /** |
| 202 | 202 | * Add customisable post meta: post date. |
@@ -207,23 +207,23 @@ discard block |
||
| 207 | 207 | function lsx_post_meta_date() { |
| 208 | 208 | $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>'; |
| 209 | 209 | |
| 210 | - $time_string = sprintf( $time_string, |
|
| 211 | - esc_attr( get_the_date( 'c' ) ), |
|
| 210 | + $time_string = sprintf($time_string, |
|
| 211 | + esc_attr(get_the_date('c')), |
|
| 212 | 212 | get_the_date(), |
| 213 | - esc_attr( get_the_modified_date( 'c' ) ), |
|
| 213 | + esc_attr(get_the_modified_date('c')), |
|
| 214 | 214 | get_the_modified_date() |
| 215 | 215 | ); |
| 216 | 216 | |
| 217 | 217 | printf( |
| 218 | 218 | '<span class="post-meta-time updated"><a href="%1$s" rel="bookmark">%2$s</a></span>', |
| 219 | - esc_url( get_permalink() ), |
|
| 220 | - wp_kses_post( $time_string ) |
|
| 219 | + esc_url(get_permalink()), |
|
| 220 | + wp_kses_post($time_string) |
|
| 221 | 221 | ); |
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | endif; |
| 225 | 225 | |
| 226 | -if ( ! function_exists( 'lsx_post_meta_author' ) ) : |
|
| 226 | +if ( ! function_exists('lsx_post_meta_author')) : |
|
| 227 | 227 | |
| 228 | 228 | /** |
| 229 | 229 | * Add customisable post meta: post author. |
@@ -233,27 +233,27 @@ discard block |
||
| 233 | 233 | */ |
| 234 | 234 | function lsx_post_meta_author() { |
| 235 | 235 | $author = get_the_author(); |
| 236 | - $author_url = get_author_posts_url( get_the_author_meta( 'ID' ) ); |
|
| 236 | + $author_url = get_author_posts_url(get_the_author_meta('ID')); |
|
| 237 | 237 | |
| 238 | - if ( empty( $author ) ) { |
|
| 238 | + if (empty($author)) { |
|
| 239 | 239 | global $post; |
| 240 | 240 | |
| 241 | - $author = get_user_by( 'ID', $post->post_author ); |
|
| 241 | + $author = get_user_by('ID', $post->post_author); |
|
| 242 | 242 | $author = $author->display_name; |
| 243 | - $author_url = get_author_posts_url( $post->post_author ); |
|
| 243 | + $author_url = get_author_posts_url($post->post_author); |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | printf( |
| 247 | 247 | '<span class="vcard post-meta-author"><span>%1$s</span> <span class="fn"><a href="%2$s">%3$s</a>, </span></span>', |
| 248 | - esc_html__( 'By ', 'lsx' ), |
|
| 249 | - esc_url( $author_url ), |
|
| 250 | - esc_html( $author ) |
|
| 248 | + esc_html__('By ', 'lsx'), |
|
| 249 | + esc_url($author_url), |
|
| 250 | + esc_html($author) |
|
| 251 | 251 | ); |
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | endif; |
| 255 | 255 | |
| 256 | -if ( ! function_exists( 'lsx_post_meta_category' ) ) : |
|
| 256 | +if ( ! function_exists('lsx_post_meta_category')) : |
|
| 257 | 257 | |
| 258 | 258 | /** |
| 259 | 259 | * Add customisable post meta: post category(ies). |
@@ -262,25 +262,25 @@ discard block |
||
| 262 | 262 | * @subpackage template-tags |
| 263 | 263 | */ |
| 264 | 264 | function lsx_post_meta_category() { |
| 265 | - $post_categories = wp_get_post_categories( get_the_ID() ); |
|
| 265 | + $post_categories = wp_get_post_categories(get_the_ID()); |
|
| 266 | 266 | $cats = array(); |
| 267 | 267 | |
| 268 | - foreach ( $post_categories as $c ) { |
|
| 269 | - $cat = get_category( $c ); |
|
| 268 | + foreach ($post_categories as $c) { |
|
| 269 | + $cat = get_category($c); |
|
| 270 | 270 | /* Translators: %s: category name */ |
| 271 | - $cats[] = '<a href="' . esc_url( get_category_link( $cat->term_id ) ) . '" title="' . sprintf( esc_html__( 'View all posts in %s' , 'lsx' ), $cat->name ) . '">' . $cat->name . '</a>'; |
|
| 271 | + $cats[] = '<a href="' . esc_url(get_category_link($cat->term_id)) . '" title="' . sprintf(esc_html__('View all posts in %s', 'lsx'), $cat->name) . '">' . $cat->name . '</a>'; |
|
| 272 | 272 | } |
| 273 | 273 | |
| 274 | - if ( ! empty( $cats ) ) { |
|
| 274 | + if ( ! empty($cats)) { |
|
| 275 | 275 | ?> |
| 276 | - <span class="post-meta-categories"><span><?php esc_html_e( 'Posted in: ', 'lsx' ); ?></span> <?php echo wp_kses_post( implode( ', ', $cats ) ); ?></span> |
|
| 276 | + <span class="post-meta-categories"><span><?php esc_html_e('Posted in: ', 'lsx'); ?></span> <?php echo wp_kses_post(implode(', ', $cats)); ?></span> |
|
| 277 | 277 | <?php |
| 278 | 278 | } |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | endif; |
| 282 | 282 | |
| 283 | -if ( ! function_exists( 'lsx_post_tags' ) ) : |
|
| 283 | +if ( ! function_exists('lsx_post_tags')) : |
|
| 284 | 284 | |
| 285 | 285 | /** |
| 286 | 286 | * Add customisable post meta: post tag(s). |
@@ -289,10 +289,10 @@ discard block |
||
| 289 | 289 | * @subpackage template-tags |
| 290 | 290 | */ |
| 291 | 291 | function lsx_post_tags() { |
| 292 | - if ( has_tag() ) : |
|
| 292 | + if (has_tag()) : |
|
| 293 | 293 | ?> |
| 294 | 294 | <div class="post-tags"> |
| 295 | - <span><?php echo esc_html__( 'Tags: ', 'lsx' ); ?></span><?php echo wp_kses_post( get_the_tag_list( '' ) ); ?> |
|
| 295 | + <span><?php echo esc_html__('Tags: ', 'lsx'); ?></span><?php echo wp_kses_post(get_the_tag_list('')); ?> |
|
| 296 | 296 | </div> |
| 297 | 297 | <?php |
| 298 | 298 | endif; |
@@ -300,9 +300,9 @@ discard block |
||
| 300 | 300 | |
| 301 | 301 | endif; |
| 302 | 302 | |
| 303 | -add_action( 'lsx_content_post_tags', 'lsx_post_tags', 10 ); |
|
| 303 | +add_action('lsx_content_post_tags', 'lsx_post_tags', 10); |
|
| 304 | 304 | |
| 305 | -if ( ! function_exists( 'lsx_sharing_output' ) ) : |
|
| 305 | +if ( ! function_exists('lsx_sharing_output')) : |
|
| 306 | 306 | |
| 307 | 307 | /** |
| 308 | 308 | * Display sharing buttons. |
@@ -312,14 +312,14 @@ discard block |
||
| 312 | 312 | */ |
| 313 | 313 | function lsx_sharing_output() { |
| 314 | 314 | global $lsx_sharing; |
| 315 | - echo wp_kses_post( $lsx_sharing->sharing_buttons() ); |
|
| 315 | + echo wp_kses_post($lsx_sharing->sharing_buttons()); |
|
| 316 | 316 | } |
| 317 | 317 | |
| 318 | 318 | endif; |
| 319 | 319 | |
| 320 | -add_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 ); |
|
| 320 | +add_action('lsx_content_sharing', 'lsx_sharing_output', 20); |
|
| 321 | 321 | |
| 322 | -if ( ! function_exists( 'lsx_translate_format_to_fontawesome' ) ) : |
|
| 322 | +if ( ! function_exists('lsx_translate_format_to_fontawesome')) : |
|
| 323 | 323 | |
| 324 | 324 | /** |
| 325 | 325 | * Translate post format to Font Awesome class. |
@@ -327,8 +327,8 @@ discard block |
||
| 327 | 327 | * @package lsx |
| 328 | 328 | * @subpackage template-tags |
| 329 | 329 | */ |
| 330 | - function lsx_translate_format_to_fontawesome( $format ) { |
|
| 331 | - switch ( $format ) { |
|
| 330 | + function lsx_translate_format_to_fontawesome($format) { |
|
| 331 | + switch ($format) { |
|
| 332 | 332 | case 'image': |
| 333 | 333 | $format = 'camera'; |
| 334 | 334 | break; |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | |
| 361 | 361 | endif; |
| 362 | 362 | |
| 363 | -if ( ! function_exists( 'lsx_paging_nav' ) ) : |
|
| 363 | +if ( ! function_exists('lsx_paging_nav')) : |
|
| 364 | 364 | |
| 365 | 365 | /** |
| 366 | 366 | * Display navigation to next/previous set of posts when applicable. |
@@ -371,37 +371,37 @@ discard block |
||
| 371 | 371 | function lsx_paging_nav() { |
| 372 | 372 | global $wp_query; |
| 373 | 373 | |
| 374 | - if ( $wp_query->max_num_pages < 2 ) { |
|
| 374 | + if ($wp_query->max_num_pages < 2) { |
|
| 375 | 375 | return; |
| 376 | 376 | } |
| 377 | 377 | |
| 378 | - if ( true === apply_filters( 'lsx_paging_nav_disable', false ) ) { |
|
| 378 | + if (true === apply_filters('lsx_paging_nav_disable', false)) { |
|
| 379 | 379 | return true; |
| 380 | - } elseif ( current_theme_supports( 'infinite-scroll' ) && class_exists( 'The_Neverending_Home_Page' ) ) { |
|
| 380 | + } elseif (current_theme_supports('infinite-scroll') && class_exists('The_Neverending_Home_Page')) { |
|
| 381 | 381 | return true; |
| 382 | 382 | } else { |
| 383 | 383 | $html = ''; |
| 384 | 384 | $html .= '<div class="lsx-pagination-wrapper">' . PHP_EOL; |
| 385 | 385 | $html .= '<div class="lsx-breaker"></div>' . PHP_EOL; |
| 386 | 386 | $html .= '<div class="lsx-pagination">' . PHP_EOL; |
| 387 | - $html .= paginate_links( array( |
|
| 388 | - 'base' => str_replace( 999999999, '%#%', esc_url( get_pagenum_link( 999999999 ) ) ), |
|
| 387 | + $html .= paginate_links(array( |
|
| 388 | + 'base' => str_replace(999999999, '%#%', esc_url(get_pagenum_link(999999999))), |
|
| 389 | 389 | 'format' => '?paged=%#%', |
| 390 | 390 | 'total' => $wp_query->max_num_pages, |
| 391 | - 'current' => max( 1, intval( get_query_var( 'paged' ) ) ), |
|
| 392 | - 'prev_text' => '<span class="meta-nav">←</span> ' . esc_html__( 'Previous', 'lsx' ), |
|
| 393 | - 'next_text' => esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">→</span>', |
|
| 394 | - ) ); |
|
| 391 | + 'current' => max(1, intval(get_query_var('paged'))), |
|
| 392 | + 'prev_text' => '<span class="meta-nav">←</span> ' . esc_html__('Previous', 'lsx'), |
|
| 393 | + 'next_text' => esc_html__('Next', 'lsx') . ' <span class="meta-nav">→</span>', |
|
| 394 | + )); |
|
| 395 | 395 | $html .= '</div>' . PHP_EOL; |
| 396 | 396 | $html .= '</div>' . PHP_EOL; |
| 397 | 397 | |
| 398 | - echo wp_kses_post( $html ); |
|
| 398 | + echo wp_kses_post($html); |
|
| 399 | 399 | } |
| 400 | 400 | } |
| 401 | 401 | |
| 402 | 402 | endif; |
| 403 | 403 | |
| 404 | -if ( ! function_exists( 'lsx_post_nav' ) ) : |
|
| 404 | +if ( ! function_exists('lsx_post_nav')) : |
|
| 405 | 405 | |
| 406 | 406 | /** |
| 407 | 407 | * Display navigation to next/previous post when applicable. |
@@ -410,24 +410,24 @@ discard block |
||
| 410 | 410 | * @subpackage template-tags |
| 411 | 411 | */ |
| 412 | 412 | function lsx_post_nav() { |
| 413 | - $previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true ); |
|
| 414 | - $next = get_adjacent_post( false, '', false ); |
|
| 413 | + $previous = (is_attachment()) ? get_post(get_post()->post_parent) : get_adjacent_post(false, '', true); |
|
| 414 | + $next = get_adjacent_post(false, '', false); |
|
| 415 | 415 | |
| 416 | - if ( ! $next && ! $previous ) { |
|
| 416 | + if ( ! $next && ! $previous) { |
|
| 417 | 417 | return; |
| 418 | 418 | } |
| 419 | 419 | |
| 420 | 420 | $default_size = 'sm'; |
| 421 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
| 421 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
| 422 | 422 | ?> |
| 423 | 423 | <nav class="navigation post-navigation" role="navigation"> |
| 424 | 424 | <div class="lsx-breaker"></div> |
| 425 | 425 | <div class="nav-links pager row"> |
| 426 | - <div class="previous <?php echo 'col-' . esc_attr( $size ) . '-6'; ?>"> |
|
| 427 | - <?php previous_post_link( '%link', '<p class="nav-links-description">' . esc_html_x( 'Previous Post', 'Previous post link', 'lsx' ) . '</p><h3>%title</h3>' ); ?> |
|
| 426 | + <div class="previous <?php echo 'col-' . esc_attr($size) . '-6'; ?>"> |
|
| 427 | + <?php previous_post_link('%link', '<p class="nav-links-description">' . esc_html_x('Previous Post', 'Previous post link', 'lsx') . '</p><h3>%title</h3>'); ?> |
|
| 428 | 428 | </div> |
| 429 | - <div class="next <?php echo 'col-' . esc_attr( $size ) . '-6'; ?>"> |
|
| 430 | - <?php next_post_link( '%link', '<p class="nav-links-description">' . esc_html_x( 'Next Post', 'Next post link', 'lsx' ) . '</p><h3>%title</h3>' ); ?> |
|
| 429 | + <div class="next <?php echo 'col-' . esc_attr($size) . '-6'; ?>"> |
|
| 430 | + <?php next_post_link('%link', '<p class="nav-links-description">' . esc_html_x('Next Post', 'Next post link', 'lsx') . '</p><h3>%title</h3>'); ?> |
|
| 431 | 431 | </div> |
| 432 | 432 | </div><!-- .nav-links --> |
| 433 | 433 | </nav><!-- .navigation --> |
@@ -436,7 +436,7 @@ discard block |
||
| 436 | 436 | |
| 437 | 437 | endif; |
| 438 | 438 | |
| 439 | -if ( ! function_exists( 'lsx_site_identity' ) ) : |
|
| 439 | +if ( ! function_exists('lsx_site_identity')) : |
|
| 440 | 440 | |
| 441 | 441 | /** |
| 442 | 442 | * Outputs either the Site Title or the Site Logo. |
@@ -445,10 +445,10 @@ discard block |
||
| 445 | 445 | * @subpackage template-tags |
| 446 | 446 | */ |
| 447 | 447 | function lsx_site_identity() { |
| 448 | - if ( function_exists( 'has_custom_logo' ) && has_custom_logo() ) { |
|
| 448 | + if (function_exists('has_custom_logo') && has_custom_logo()) { |
|
| 449 | 449 | the_custom_logo(); |
| 450 | 450 | } else { |
| 451 | - if ( get_theme_mod( 'site_logo_header_text', 1 ) ) { |
|
| 451 | + if (get_theme_mod('site_logo_header_text', 1)) { |
|
| 452 | 452 | lsx_site_title(); |
| 453 | 453 | } |
| 454 | 454 | } |
@@ -456,7 +456,7 @@ discard block |
||
| 456 | 456 | |
| 457 | 457 | endif; |
| 458 | 458 | |
| 459 | -if ( ! function_exists( 'lsx_navbar_header' ) ) : |
|
| 459 | +if ( ! function_exists('lsx_navbar_header')) : |
|
| 460 | 460 | /** |
| 461 | 461 | * Outputs the Nav Menu. |
| 462 | 462 | * |
@@ -467,17 +467,17 @@ discard block |
||
| 467 | 467 | ?> |
| 468 | 468 | <div class="navbar-header" itemscope itemtype="http://schema.org/WebPage"> |
| 469 | 469 | <?php |
| 470 | - if ( has_nav_menu( 'primary' ) ) : |
|
| 470 | + if (has_nav_menu('primary')) : |
|
| 471 | 471 | ?> |
| 472 | 472 | <div class="wrapper-toggle" data-toggle="collapse" data-target=".primary-navbar"> |
| 473 | 473 | <button type="button" class="navbar-toggle"> |
| 474 | - <span class="sr-only"><?php esc_html_e( 'Toggle navigation', 'lsx' ); ?></span> |
|
| 474 | + <span class="sr-only"><?php esc_html_e('Toggle navigation', 'lsx'); ?></span> |
|
| 475 | 475 | <span class="icon-bar"></span> |
| 476 | 476 | <span class="icon-bar"></span> |
| 477 | 477 | <span class="icon-bar"></span> |
| 478 | 478 | <span class="icon-bar"></span> |
| 479 | 479 | </button> |
| 480 | - <span class="mobile-menu-title"><?php esc_html_e( 'Menu', 'lsx' ); ?></span> |
|
| 480 | + <span class="mobile-menu-title"><?php esc_html_e('Menu', 'lsx'); ?></span> |
|
| 481 | 481 | </div> |
| 482 | 482 | <?php |
| 483 | 483 | endif; |
@@ -490,9 +490,9 @@ discard block |
||
| 490 | 490 | |
| 491 | 491 | endif; |
| 492 | 492 | |
| 493 | -add_action( 'lsx_nav_before', 'lsx_navbar_header' ); |
|
| 493 | +add_action('lsx_nav_before', 'lsx_navbar_header'); |
|
| 494 | 494 | |
| 495 | -if ( ! function_exists( 'lsx_nav_menu' ) ) : |
|
| 495 | +if ( ! function_exists('lsx_nav_menu')) : |
|
| 496 | 496 | /** |
| 497 | 497 | * Outputs the Nav Menu. |
| 498 | 498 | * |
@@ -500,17 +500,17 @@ discard block |
||
| 500 | 500 | * @subpackage template-tags |
| 501 | 501 | */ |
| 502 | 502 | function lsx_nav_menu() { |
| 503 | - if ( has_nav_menu( 'primary' ) ) : |
|
| 503 | + if (has_nav_menu('primary')) : |
|
| 504 | 504 | ?> |
| 505 | 505 | <nav class="primary-navbar collapse navbar-collapse"> |
| 506 | 506 | <?php |
| 507 | - wp_nav_menu( array( |
|
| 507 | + wp_nav_menu(array( |
|
| 508 | 508 | 'theme_location' => 'primary', |
| 509 | 509 | 'depth' => 3, |
| 510 | 510 | 'container' => false, |
| 511 | 511 | 'menu_class' => 'nav navbar-nav', |
| 512 | 512 | 'walker' => new LSX_Bootstrap_Navwalker(), |
| 513 | - ) ); |
|
| 513 | + )); |
|
| 514 | 514 | ?> |
| 515 | 515 | </nav> |
| 516 | 516 | <?php |
@@ -518,7 +518,7 @@ discard block |
||
| 518 | 518 | } |
| 519 | 519 | endif; |
| 520 | 520 | |
| 521 | -if ( ! function_exists( 'lsx_sitemap_loops' ) ) { |
|
| 521 | +if ( ! function_exists('lsx_sitemap_loops')) { |
|
| 522 | 522 | /** |
| 523 | 523 | * Outputs the loops on the sitemap |
| 524 | 524 | * |
@@ -526,19 +526,19 @@ discard block |
||
| 526 | 526 | * @subpackage template-tags |
| 527 | 527 | */ |
| 528 | 528 | function lsx_sitemap_loops() { |
| 529 | - $sitemap_loops = array( |
|
| 529 | + $sitemap_loops = array( |
|
| 530 | 530 | 'page' => array( |
| 531 | 531 | 'type' => 'post_type', |
| 532 | - 'label' => __( 'Pages', 'lsx' ), |
|
| 532 | + 'label' => __('Pages', 'lsx'), |
|
| 533 | 533 | 'heirarchy' => true, |
| 534 | 534 | ), |
| 535 | 535 | 'post' => array( |
| 536 | 536 | 'type' => 'post_type', |
| 537 | - 'label' => __( 'Posts', 'lsx' ), |
|
| 537 | + 'label' => __('Posts', 'lsx'), |
|
| 538 | 538 | ), |
| 539 | 539 | 'category' => array( |
| 540 | 540 | 'type' => 'taxonomy', |
| 541 | - 'label' => __( 'Categories', 'lsx' ), |
|
| 541 | + 'label' => __('Categories', 'lsx'), |
|
| 542 | 542 | 'heirarchy' => true, |
| 543 | 543 | ), |
| 544 | 544 | ); |
@@ -547,49 +547,49 @@ discard block |
||
| 547 | 547 | '_builtin' => false, |
| 548 | 548 | 'show_ui' => true, |
| 549 | 549 | ); |
| 550 | - $post_types = get_post_types( $post_type_args, 'objects' ); |
|
| 551 | - if ( ! empty( $post_types ) ) { |
|
| 552 | - foreach ( $post_types as $post_type_key => $post_type_obj ) { |
|
| 553 | - $sitemap_loops[ $post_type_key ] = array( |
|
| 550 | + $post_types = get_post_types($post_type_args, 'objects'); |
|
| 551 | + if ( ! empty($post_types)) { |
|
| 552 | + foreach ($post_types as $post_type_key => $post_type_obj) { |
|
| 553 | + $sitemap_loops[$post_type_key] = array( |
|
| 554 | 554 | 'type' => 'post_type', |
| 555 | 555 | 'label' => $post_type_obj->label, |
| 556 | 556 | ); |
| 557 | 557 | } |
| 558 | 558 | } |
| 559 | - $taxonomy_args = array( |
|
| 559 | + $taxonomy_args = array( |
|
| 560 | 560 | 'public' => true, |
| 561 | 561 | '_builtin' => false, |
| 562 | 562 | 'show_ui' => true, |
| 563 | 563 | ); |
| 564 | - $taxonomies = get_taxonomies( $taxonomy_args, 'objects' ); |
|
| 565 | - if ( ! empty( $taxonomies ) ) { |
|
| 566 | - foreach ( $taxonomies as $tax_key => $tax_obj ) { |
|
| 567 | - $sitemap_loops[ $tax_key ] = array( |
|
| 564 | + $taxonomies = get_taxonomies($taxonomy_args, 'objects'); |
|
| 565 | + if ( ! empty($taxonomies)) { |
|
| 566 | + foreach ($taxonomies as $tax_key => $tax_obj) { |
|
| 567 | + $sitemap_loops[$tax_key] = array( |
|
| 568 | 568 | 'type' => 'taxonomy', |
| 569 | 569 | 'label' => $tax_obj->label, |
| 570 | 570 | ); |
| 571 | 571 | } |
| 572 | 572 | } |
| 573 | - $sitemap_loops = apply_filters( 'lsx_sitemap_loops_list', $sitemap_loops ); |
|
| 574 | - foreach ( $sitemap_loops as $sitemap_key => $sitemap_values ) { |
|
| 575 | - if ( 'post_type' === $sitemap_values['type'] ) { |
|
| 576 | - if ( isset( $sitemap_values['heirarchy'] ) && true === $sitemap_values['heirarchy'] ) { |
|
| 577 | - lsx_sitemap_pages( $sitemap_key, $sitemap_values['label'] ); |
|
| 573 | + $sitemap_loops = apply_filters('lsx_sitemap_loops_list', $sitemap_loops); |
|
| 574 | + foreach ($sitemap_loops as $sitemap_key => $sitemap_values) { |
|
| 575 | + if ('post_type' === $sitemap_values['type']) { |
|
| 576 | + if (isset($sitemap_values['heirarchy']) && true === $sitemap_values['heirarchy']) { |
|
| 577 | + lsx_sitemap_pages($sitemap_key, $sitemap_values['label']); |
|
| 578 | 578 | } else { |
| 579 | - lsx_sitemap_custom_post_type( $sitemap_key, $sitemap_values['label'] ); |
|
| 579 | + lsx_sitemap_custom_post_type($sitemap_key, $sitemap_values['label']); |
|
| 580 | 580 | } |
| 581 | 581 | } else { |
| 582 | - if ( isset( $sitemap_values['heirarchy'] ) && true === $sitemap_values['heirarchy'] ) { |
|
| 583 | - lsx_sitemap_taxonomy( $sitemap_key, $sitemap_values['label'], true ); |
|
| 582 | + if (isset($sitemap_values['heirarchy']) && true === $sitemap_values['heirarchy']) { |
|
| 583 | + lsx_sitemap_taxonomy($sitemap_key, $sitemap_values['label'], true); |
|
| 584 | 584 | } else { |
| 585 | - lsx_sitemap_taxonomy( $sitemap_key, $sitemap_values['label'], false ); |
|
| 585 | + lsx_sitemap_taxonomy($sitemap_key, $sitemap_values['label'], false); |
|
| 586 | 586 | } |
| 587 | 587 | } |
| 588 | 588 | } |
| 589 | 589 | } |
| 590 | 590 | } |
| 591 | 591 | |
| 592 | -if ( ! function_exists( 'lsx_sitemap_pages' ) ) : |
|
| 592 | +if ( ! function_exists('lsx_sitemap_pages')) : |
|
| 593 | 593 | |
| 594 | 594 | /** |
| 595 | 595 | * Outputs Pages for the Sitemap Template. |
@@ -597,7 +597,7 @@ discard block |
||
| 597 | 597 | * @package lsx |
| 598 | 598 | * @subpackage template-tags |
| 599 | 599 | */ |
| 600 | - function lsx_sitemap_pages( $forced_type = '', $label = '' ) { |
|
| 600 | + function lsx_sitemap_pages($forced_type = '', $label = '') { |
|
| 601 | 601 | $page_args = array( |
| 602 | 602 | 'depth' => 3, |
| 603 | 603 | 'title_li' => '', |
@@ -606,15 +606,15 @@ discard block |
||
| 606 | 606 | 'post_type' => $forced_type, |
| 607 | 607 | 'item_spacing' => 'preserve', |
| 608 | 608 | ); |
| 609 | - echo '<h2>' . esc_html( $label ) . '</h2>'; |
|
| 609 | + echo '<h2>' . esc_html($label) . '</h2>'; |
|
| 610 | 610 | echo '<ul>'; |
| 611 | - wp_list_pages( $page_args ); |
|
| 611 | + wp_list_pages($page_args); |
|
| 612 | 612 | echo '</ul>'; |
| 613 | 613 | } |
| 614 | 614 | |
| 615 | 615 | endif; |
| 616 | 616 | |
| 617 | -if ( ! function_exists( 'lsx_sitemap_custom_post_type' ) ) : |
|
| 617 | +if ( ! function_exists('lsx_sitemap_custom_post_type')) : |
|
| 618 | 618 | |
| 619 | 619 | /** |
| 620 | 620 | * Outputs a custom post type section. |
@@ -622,18 +622,18 @@ discard block |
||
| 622 | 622 | * @package lsx |
| 623 | 623 | * @subpackage template-tags |
| 624 | 624 | */ |
| 625 | - function lsx_sitemap_custom_post_type( $forced_type = '', $label = '' ) { |
|
| 626 | - if ( '' !== $forced_type ) { |
|
| 627 | - $post_types = array( $forced_type ); |
|
| 625 | + function lsx_sitemap_custom_post_type($forced_type = '', $label = '') { |
|
| 626 | + if ('' !== $forced_type) { |
|
| 627 | + $post_types = array($forced_type); |
|
| 628 | 628 | } else { |
| 629 | 629 | $args = array( |
| 630 | 630 | 'public' => true, |
| 631 | 631 | '_builtin' => false, |
| 632 | 632 | ); |
| 633 | - $post_types = get_post_types( $args, 'names' ); |
|
| 633 | + $post_types = get_post_types($args, 'names'); |
|
| 634 | 634 | } |
| 635 | 635 | |
| 636 | - foreach ( $post_types as $post_type ) { |
|
| 636 | + foreach ($post_types as $post_type) { |
|
| 637 | 637 | $post_type_args = array( |
| 638 | 638 | 'post_type' => 'page', |
| 639 | 639 | 'posts_per_page' => 99, |
@@ -641,24 +641,24 @@ discard block |
||
| 641 | 641 | 'post_type' => $post_type, |
| 642 | 642 | ); |
| 643 | 643 | |
| 644 | - $post_type_items = new WP_Query( $post_type_args ); |
|
| 645 | - $post_type_object = get_post_type_object( $post_type ); |
|
| 644 | + $post_type_items = new WP_Query($post_type_args); |
|
| 645 | + $post_type_object = get_post_type_object($post_type); |
|
| 646 | 646 | |
| 647 | - if ( '' !== $label ) { |
|
| 647 | + if ('' !== $label) { |
|
| 648 | 648 | $title = $label; |
| 649 | - } elseif ( ! empty( $post_type_object ) ) { |
|
| 649 | + } elseif ( ! empty($post_type_object)) { |
|
| 650 | 650 | $title = $post_type_object->labels->name; |
| 651 | 651 | } else { |
| 652 | - $title = ucwords( $post_type ); |
|
| 652 | + $title = ucwords($post_type); |
|
| 653 | 653 | } |
| 654 | 654 | |
| 655 | - if ( $post_type_items->have_posts() ) { |
|
| 656 | - echo '<h2>' . esc_html( $title ) . '</h2>'; |
|
| 655 | + if ($post_type_items->have_posts()) { |
|
| 656 | + echo '<h2>' . esc_html($title) . '</h2>'; |
|
| 657 | 657 | echo '<ul>'; |
| 658 | 658 | |
| 659 | - while ( $post_type_items->have_posts() ) { |
|
| 659 | + while ($post_type_items->have_posts()) { |
|
| 660 | 660 | $post_type_items->the_post(); |
| 661 | - echo '<li class="' . esc_attr( get_post_type() ) . '_item ' . esc_attr( get_post_type() ) . '-item-' . esc_attr( get_the_ID() ) . '"><a href="' . esc_url( get_permalink() ) . '" title="">' . get_the_title() . '</a></li>'; |
|
| 661 | + echo '<li class="' . esc_attr(get_post_type()) . '_item ' . esc_attr(get_post_type()) . '-item-' . esc_attr(get_the_ID()) . '"><a href="' . esc_url(get_permalink()) . '" title="">' . get_the_title() . '</a></li>'; |
|
| 662 | 662 | } |
| 663 | 663 | |
| 664 | 664 | echo '</ul>'; |
@@ -674,8 +674,8 @@ discard block |
||
| 674 | 674 | * |
| 675 | 675 | * @return void |
| 676 | 676 | */ |
| 677 | -function lsx_sitemap_taxonomy( $taxonomy = '', $label = '', $hierarchical = false ) { |
|
| 678 | - if ( '' !== $taxonomy ) { |
|
| 677 | +function lsx_sitemap_taxonomy($taxonomy = '', $label = '', $hierarchical = false) { |
|
| 678 | + if ('' !== $taxonomy) { |
|
| 679 | 679 | |
| 680 | 680 | $tax_args = array( |
| 681 | 681 | 'echo' => 0, |
@@ -685,24 +685,24 @@ discard block |
||
| 685 | 685 | 'hierarchical' => $hierarchical, |
| 686 | 686 | 'separator' => '<br />', |
| 687 | 687 | 'show_count' => 0, |
| 688 | - 'show_option_none' => __( 'None', 'lsx' ), |
|
| 688 | + 'show_option_none' => __('None', 'lsx'), |
|
| 689 | 689 | 'style' => 'list', |
| 690 | 690 | 'taxonomy' => $taxonomy, |
| 691 | 691 | 'title_li' => '', |
| 692 | 692 | ); |
| 693 | - $categories = wp_list_categories( $tax_args ); |
|
| 694 | - if ( ! empty( $categories ) ) { |
|
| 693 | + $categories = wp_list_categories($tax_args); |
|
| 694 | + if ( ! empty($categories)) { |
|
| 695 | 695 | echo '<div class="sitemap-rows">'; |
| 696 | - echo '<h2>' . wp_kses_post( $label ) . '</h2>'; |
|
| 696 | + echo '<h2>' . wp_kses_post($label) . '</h2>'; |
|
| 697 | 697 | echo '<ul>'; |
| 698 | - echo wp_kses_post( $categories ); |
|
| 698 | + echo wp_kses_post($categories); |
|
| 699 | 699 | echo '</ul>'; |
| 700 | 700 | echo '</div>'; |
| 701 | 701 | } |
| 702 | 702 | } |
| 703 | 703 | } |
| 704 | 704 | |
| 705 | -if ( ! function_exists( 'lsx_sitemap_taxonomy_clouds' ) ) : |
|
| 705 | +if ( ! function_exists('lsx_sitemap_taxonomy_clouds')) : |
|
| 706 | 706 | |
| 707 | 707 | /** |
| 708 | 708 | * Outputs the public taxonomies. |
@@ -716,18 +716,18 @@ discard block |
||
| 716 | 716 | '_builtin' => false, |
| 717 | 717 | ); |
| 718 | 718 | |
| 719 | - $taxonomies = get_taxonomies( $taxonomy_args ); |
|
| 719 | + $taxonomies = get_taxonomies($taxonomy_args); |
|
| 720 | 720 | |
| 721 | - if ( ! empty( $taxonomies ) ) { |
|
| 722 | - foreach ( $taxonomies as $taxonomy_id => $taxonomy ) { |
|
| 723 | - $tag_cloud = wp_tag_cloud( array( |
|
| 721 | + if ( ! empty($taxonomies)) { |
|
| 722 | + foreach ($taxonomies as $taxonomy_id => $taxonomy) { |
|
| 723 | + $tag_cloud = wp_tag_cloud(array( |
|
| 724 | 724 | 'taxonomy' => $taxonomy_id, |
| 725 | 725 | 'echo' => false, |
| 726 | - ) ); |
|
| 726 | + )); |
|
| 727 | 727 | |
| 728 | - if ( ! empty( $tag_cloud ) ) { |
|
| 729 | - echo '<h2>' . esc_html( $taxonomy ) . '</h2>'; |
|
| 730 | - echo '<aside id="' . esc_attr( $taxonomy_id ) . '" class="widget widget_' . esc_attr( $taxonomy_id ) . '">' . esc_html( $tag_cloud ) . '</aside>'; |
|
| 728 | + if ( ! empty($tag_cloud)) { |
|
| 729 | + echo '<h2>' . esc_html($taxonomy) . '</h2>'; |
|
| 730 | + echo '<aside id="' . esc_attr($taxonomy_id) . '" class="widget widget_' . esc_attr($taxonomy_id) . '">' . esc_html($tag_cloud) . '</aside>'; |
|
| 731 | 731 | } |
| 732 | 732 | } |
| 733 | 733 | } |
@@ -735,7 +735,7 @@ discard block |
||
| 735 | 735 | |
| 736 | 736 | endif; |
| 737 | 737 | |
| 738 | -if ( ! function_exists( 'lsx_add_top_menu' ) ) : |
|
| 738 | +if ( ! function_exists('lsx_add_top_menu')) : |
|
| 739 | 739 | |
| 740 | 740 | /** |
| 741 | 741 | * Adds our top menu to the theme. |
@@ -744,28 +744,28 @@ discard block |
||
| 744 | 744 | * @subpackage template-tags |
| 745 | 745 | */ |
| 746 | 746 | function lsx_add_top_menu() { |
| 747 | - if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) : |
|
| 747 | + if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) : |
|
| 748 | 748 | ?> |
| 749 | 749 | <div id="top-menu" class="<?php lsx_top_menu_classes(); ?>"> |
| 750 | 750 | <div class="container"> |
| 751 | - <?php if ( has_nav_menu( 'top-menu' ) ) : ?> |
|
| 751 | + <?php if (has_nav_menu('top-menu')) : ?> |
|
| 752 | 752 | <nav class="top-menu"> |
| 753 | 753 | <?php |
| 754 | - wp_nav_menu( array( |
|
| 754 | + wp_nav_menu(array( |
|
| 755 | 755 | 'theme_location' => 'top-menu', |
| 756 | 756 | 'walker' => new LSX_Bootstrap_Navwalker(), |
| 757 | - ) ); |
|
| 757 | + )); |
|
| 758 | 758 | ?> |
| 759 | 759 | </nav> |
| 760 | 760 | <?php endif; ?> |
| 761 | 761 | |
| 762 | - <?php if ( has_nav_menu( 'top-menu-left' ) ) : ?> |
|
| 762 | + <?php if (has_nav_menu('top-menu-left')) : ?> |
|
| 763 | 763 | <nav class="top-menu pull-left"> |
| 764 | 764 | <?php |
| 765 | - wp_nav_menu( array( |
|
| 765 | + wp_nav_menu(array( |
|
| 766 | 766 | 'theme_location' => 'top-menu-left', |
| 767 | 767 | 'walker' => new LSX_Bootstrap_Navwalker(), |
| 768 | - ) ); |
|
| 768 | + )); |
|
| 769 | 769 | ?> |
| 770 | 770 | </nav> |
| 771 | 771 | <?php endif; ?> |
@@ -777,9 +777,9 @@ discard block |
||
| 777 | 777 | |
| 778 | 778 | endif; |
| 779 | 779 | |
| 780 | -add_action( 'lsx_header_before', 'lsx_add_top_menu' ); |
|
| 780 | +add_action('lsx_header_before', 'lsx_add_top_menu'); |
|
| 781 | 781 | |
| 782 | -if ( ! function_exists( 'lsx_get_my_url' ) ) : |
|
| 782 | +if ( ! function_exists('lsx_get_my_url')) : |
|
| 783 | 783 | |
| 784 | 784 | /** |
| 785 | 785 | * Return URL from a link in the content. |
@@ -788,11 +788,11 @@ discard block |
||
| 788 | 788 | * @subpackage template-tags |
| 789 | 789 | */ |
| 790 | 790 | function lsx_get_my_url() { |
| 791 | - if ( ! preg_match( '/^<a\s[^>]*?href=[\'"](.+?)[\'"]$/is', get_the_content(), $matches ) ) { |
|
| 791 | + if ( ! preg_match('/^<a\s[^>]*?href=[\'"](.+?)[\'"]$/is', get_the_content(), $matches)) { |
|
| 792 | 792 | return false; |
| 793 | 793 | } |
| 794 | 794 | |
| 795 | - return esc_url_raw( $matches[1] ); |
|
| 795 | + return esc_url_raw($matches[1]); |
|
| 796 | 796 | } |
| 797 | 797 | |
| 798 | 798 | endif; |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; // Exit if accessed directly |
| 4 | 4 | } |
| 5 | 5 | |
@@ -19,9 +19,9 @@ discard block |
||
| 19 | 19 | * Constructor. |
| 20 | 20 | */ |
| 21 | 21 | public function __construct() { |
| 22 | - add_action( 'init', array( $this, 'init' ) ); |
|
| 23 | - add_action( 'widgets_init', array( $this, 'lsx_widget_area_sensei_init' ), 100 ); |
|
| 24 | - add_filter( 'body_class', array( $this, 'lsx_widget_area_sensei_is_active' ) ); |
|
| 22 | + add_action('init', array($this, 'init')); |
|
| 23 | + add_action('widgets_init', array($this, 'lsx_widget_area_sensei_init'), 100); |
|
| 24 | + add_filter('body_class', array($this, 'lsx_widget_area_sensei_is_active')); |
|
| 25 | 25 | } // End __construct() |
| 26 | 26 | |
| 27 | 27 | /** |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | * @return self |
| 31 | 31 | */ |
| 32 | 32 | public static function instance() { |
| 33 | - if ( ! self::$instance ) { |
|
| 33 | + if ( ! self::$instance) { |
|
| 34 | 34 | self::$instance = new self(); |
| 35 | 35 | } |
| 36 | 36 | return self::$instance; |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | * Run our changes. |
| 41 | 41 | */ |
| 42 | 42 | public function init() { |
| 43 | - add_action( 'lsx_content_top', array( $this, 'lsx_sensei_lesson_sidebar' ) ); |
|
| 43 | + add_action('lsx_content_top', array($this, 'lsx_sensei_lesson_sidebar')); |
|
| 44 | 44 | |
| 45 | 45 | } |
| 46 | 46 | |
@@ -50,21 +50,21 @@ discard block |
||
| 50 | 50 | * @return void |
| 51 | 51 | */ |
| 52 | 52 | public function lsx_widget_area_sensei_init() { |
| 53 | - if ( class_exists( 'Sensei_Course_Participants' ) || class_exists( 'Sensei_Course_Progress' ) ) { |
|
| 54 | - register_sidebar( array( |
|
| 55 | - 'name' => esc_html__( 'LSX Sensei Sidebar', 'lsx' ), |
|
| 53 | + if (class_exists('Sensei_Course_Participants') || class_exists('Sensei_Course_Progress')) { |
|
| 54 | + register_sidebar(array( |
|
| 55 | + 'name' => esc_html__('LSX Sensei Sidebar', 'lsx'), |
|
| 56 | 56 | 'id' => 'lsx-sensei-sidebar', |
| 57 | 57 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
| 58 | 58 | 'after_widget' => '</aside>', |
| 59 | 59 | 'before_title' => '<h3 class="widget-title">', |
| 60 | 60 | 'after_title' => '</h3>', |
| 61 | - ) ); |
|
| 61 | + )); |
|
| 62 | 62 | } |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - public function lsx_widget_area_sensei_is_active( $classes ) { |
|
| 65 | + public function lsx_widget_area_sensei_is_active($classes) { |
|
| 66 | 66 | |
| 67 | - if ( class_exists( 'Sensei_Lesson' ) && is_active_sidebar( 'lsx-sensei-sidebar' ) ) { |
|
| 67 | + if (class_exists('Sensei_Lesson') && is_active_sidebar('lsx-sensei-sidebar')) { |
|
| 68 | 68 | $classes[] = 'lsx-sensei-sidebar-active'; |
| 69 | 69 | } |
| 70 | 70 | |
@@ -77,11 +77,11 @@ discard block |
||
| 77 | 77 | * @return void |
| 78 | 78 | */ |
| 79 | 79 | public function lsx_sensei_lesson_sidebar() { |
| 80 | - if ( class_exists( 'Sensei_Lesson' ) && ( class_exists( 'Sensei_Course_Participants' ) || class_exists( 'Sensei_Course_Progress' ) ) ) { |
|
| 81 | - if ( ( is_single() && ( is_singular( 'lesson' ) ) ) || ( is_single() && ( is_singular( 'quiz' ) ) ) ) { |
|
| 82 | - if ( is_active_sidebar( 'lsx-sensei-sidebar' ) ) { |
|
| 80 | + if (class_exists('Sensei_Lesson') && (class_exists('Sensei_Course_Participants') || class_exists('Sensei_Course_Progress'))) { |
|
| 81 | + if ((is_single() && (is_singular('lesson'))) || (is_single() && (is_singular('quiz')))) { |
|
| 82 | + if (is_active_sidebar('lsx-sensei-sidebar')) { |
|
| 83 | 83 | echo '<div id="secondary" class="widget-area lsx-sensei-sidebar">'; |
| 84 | - dynamic_sidebar( 'lsx-sensei-sidebar' ); |
|
| 84 | + dynamic_sidebar('lsx-sensei-sidebar'); |
|
| 85 | 85 | echo '</div>'; |
| 86 | 86 | } |
| 87 | 87 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; // Exit if accessed directly |
| 4 | 4 | } |
| 5 | 5 | |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | * Constructor. |
| 20 | 20 | */ |
| 21 | 21 | public function __construct() { |
| 22 | - add_action( 'init', array( $this, 'init' ) ); |
|
| 22 | + add_action('init', array($this, 'init')); |
|
| 23 | 23 | } // End __construct() |
| 24 | 24 | |
| 25 | 25 | /** |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | * @return self |
| 29 | 29 | */ |
| 30 | 30 | public static function instance() { |
| 31 | - if ( ! self::$instance ) { |
|
| 31 | + if ( ! self::$instance) { |
|
| 32 | 32 | self::$instance = new self(); |
| 33 | 33 | } |
| 34 | 34 | return self::$instance; |
@@ -42,32 +42,32 @@ discard block |
||
| 42 | 42 | global $woothemes_sensei; |
| 43 | 43 | |
| 44 | 44 | //Switching the course filters and the headers around |
| 45 | - remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 10, 0 ); |
|
| 46 | - remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ) ); |
|
| 47 | - remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ) ); |
|
| 48 | - add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 11, 0 ); |
|
| 49 | - add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ), 12 ); |
|
| 50 | - add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ), 12 ); |
|
| 45 | + remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 10, 0); |
|
| 46 | + remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting')); |
|
| 47 | + remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters')); |
|
| 48 | + add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 11, 0); |
|
| 49 | + add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'), 12); |
|
| 50 | + add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'), 12); |
|
| 51 | 51 | |
| 52 | 52 | // First add the thumbnail. |
| 53 | - add_action( 'sensei_course_content_inside_before', array( $this, 'get_course_thumbnail' ), 1 ); |
|
| 53 | + add_action('sensei_course_content_inside_before', array($this, 'get_course_thumbnail'), 1); |
|
| 54 | 54 | |
| 55 | 55 | // This is for our wrapper, we run it on 2, after the thumbnail we added. |
| 56 | - add_action( 'sensei_course_content_inside_before', array( $this, 'course_body_div_open' ), 1 ); |
|
| 57 | - add_action( 'sensei_course_content_inside_after', array( $this, 'course_body_div_close' ), 50 ); |
|
| 56 | + add_action('sensei_course_content_inside_before', array($this, 'course_body_div_open'), 1); |
|
| 57 | + add_action('sensei_course_content_inside_after', array($this, 'course_body_div_close'), 50); |
|
| 58 | 58 | |
| 59 | 59 | // This is for our wrapper, we run it on 2, after the thumbnail we added. |
| 60 | - add_action( 'sensei_course_content_inside_before', array( $this, 'course_body_div_results_open' ), 20 ); |
|
| 61 | - add_action( 'sensei_course_content_inside_after', array( $this, 'course_body_div_results_close' ), 49 ); |
|
| 60 | + add_action('sensei_course_content_inside_before', array($this, 'course_body_div_results_open'), 20); |
|
| 61 | + add_action('sensei_course_content_inside_after', array($this, 'course_body_div_results_close'), 49); |
|
| 62 | 62 | |
| 63 | - add_action( 'sensei_single_course_content_inside_before', array( $this, 'display_course_amount' ), 20 ); |
|
| 63 | + add_action('sensei_single_course_content_inside_before', array($this, 'display_course_amount'), 20); |
|
| 64 | 64 | |
| 65 | 65 | // removes the course image above the content |
| 66 | - remove_action( 'sensei_course_content_inside_before', array( $woothemes_sensei->course, 'course_image' ), 30, 1 ); |
|
| 66 | + remove_action('sensei_course_content_inside_before', array($woothemes_sensei->course, 'course_image'), 30, 1); |
|
| 67 | 67 | // add the course image to the left of the content |
| 68 | - add_action( 'lsx_sensei_course_content_inside_before', array( $woothemes_sensei->course, 'course_image' ), 30, 1 ); |
|
| 68 | + add_action('lsx_sensei_course_content_inside_before', array($woothemes_sensei->course, 'course_image'), 30, 1); |
|
| 69 | 69 | |
| 70 | - add_filter( 'attach_shortcode_hooks', 'lsx_attach_shortcode_hooks', 10, 1 ); |
|
| 70 | + add_filter('attach_shortcode_hooks', 'lsx_attach_shortcode_hooks', 10, 1); |
|
| 71 | 71 | |
| 72 | 72 | } |
| 73 | 73 | |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | public function get_course_thumbnail() { |
| 80 | 80 | ?> |
| 81 | 81 | <div class="course-thumbnail"> |
| 82 | - <?php do_action( 'lsx_sensei_course_content_inside_before', get_the_ID() ); ?> |
|
| 82 | + <?php do_action('lsx_sensei_course_content_inside_before', get_the_ID()); ?> |
|
| 83 | 83 | </div> |
| 84 | 84 | <?php |
| 85 | 85 | } |
@@ -91,13 +91,13 @@ discard block |
||
| 91 | 91 | */ |
| 92 | 92 | public function course_body_div_open() { |
| 93 | 93 | global $post, $current_user; |
| 94 | - $is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID ); |
|
| 94 | + $is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID); |
|
| 95 | 95 | $user_taking_course_class = ''; |
| 96 | - if ( ! empty( $is_user_taking_course ) ) { |
|
| 96 | + if ( ! empty($is_user_taking_course)) { |
|
| 97 | 97 | $user_taking_course_class = 'currently-in-course'; |
| 98 | 98 | } |
| 99 | 99 | ?> |
| 100 | - <div class="course-body <?php echo esc_html( $user_taking_course_class ); ?>"> |
|
| 100 | + <div class="course-body <?php echo esc_html($user_taking_course_class); ?>"> |
|
| 101 | 101 | <?php |
| 102 | 102 | } |
| 103 | 103 | |
@@ -141,16 +141,16 @@ discard block |
||
| 141 | 141 | */ |
| 142 | 142 | public function display_course_amount() { |
| 143 | 143 | global $post, $current_user; |
| 144 | - $is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID ); |
|
| 145 | - $wc_post_id = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) ); |
|
| 146 | - if ( class_exists( 'Sensei_WC' ) ) { |
|
| 147 | - $course_purchasable = Sensei_WC::is_course_purchasable( $post->ID ); |
|
| 144 | + $is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID); |
|
| 145 | + $wc_post_id = absint(get_post_meta($post->ID, '_course_woocommerce_product', true)); |
|
| 146 | + if (class_exists('Sensei_WC')) { |
|
| 147 | + $course_purchasable = Sensei_WC::is_course_purchasable($post->ID); |
|
| 148 | 148 | $currency = get_woocommerce_currency_symbol(); |
| 149 | - $product = new WC_Product( $wc_post_id ); |
|
| 150 | - if ( ( ! empty( $product->price ) ) && ( ! $is_user_taking_course ) ) { |
|
| 151 | - echo '<span class="course-product-price price"><span>' . esc_html( $currency ) . ' </span>' . sprintf( '%0.2f', esc_html( $product->price ) ) . '</span>'; |
|
| 152 | - } elseif ( ( '' === $product->get_price() || 0 == $product->get_price() ) && $course_purchasable ) { |
|
| 153 | - echo '<span class="course-product-price price">' . wp_kses_post( 'Free!', 'lsx' ) . '</span>'; |
|
| 149 | + $product = new WC_Product($wc_post_id); |
|
| 150 | + if (( ! empty($product->price)) && ( ! $is_user_taking_course)) { |
|
| 151 | + echo '<span class="course-product-price price"><span>' . esc_html($currency) . ' </span>' . sprintf('%0.2f', esc_html($product->price)) . '</span>'; |
|
| 152 | + } elseif (('' === $product->get_price() || 0 == $product->get_price()) && $course_purchasable) { |
|
| 153 | + echo '<span class="course-product-price price">' . wp_kses_post('Free!', 'lsx') . '</span>'; |
|
| 154 | 154 | } |
| 155 | 155 | } |
| 156 | 156 | } |
@@ -6,25 +6,25 @@ discard block |
||
| 6 | 6 | * @subpackage layout |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | -if ( ! function_exists( 'lsx_layout_selector' ) ) : |
|
| 13 | +if ( ! function_exists('lsx_layout_selector')) : |
|
| 14 | 14 | /** |
| 15 | 15 | * Layout selector. |
| 16 | 16 | * |
| 17 | 17 | * @package lsx |
| 18 | 18 | * @subpackage layout |
| 19 | 19 | */ |
| 20 | - function lsx_layout_selector( $class, $area = 'site' ) { |
|
| 20 | + function lsx_layout_selector($class, $area = 'site') { |
|
| 21 | 21 | $return_class = ''; |
| 22 | - $layout = get_theme_mod( 'lsx_layout', '1c' ); |
|
| 23 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
| 22 | + $layout = get_theme_mod('lsx_layout', '1c'); |
|
| 23 | + $layout = apply_filters('lsx_layout', $layout); |
|
| 24 | 24 | $default_size = 'sm'; |
| 25 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
| 25 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
| 26 | 26 | |
| 27 | - switch ( $layout ) { |
|
| 27 | + switch ($layout) { |
|
| 28 | 28 | case '1c': |
| 29 | 29 | $main_class = 'col-' . $size . '-12'; |
| 30 | 30 | $sidebar_class = 'col-' . $size . '-12'; |
@@ -43,19 +43,19 @@ discard block |
||
| 43 | 43 | break; |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - if ( 'main' === $class ) { |
|
| 47 | - $return_class = apply_filters( 'lsx_layout_selector', $main_class, $class, $layout, $size ); |
|
| 46 | + if ('main' === $class) { |
|
| 47 | + $return_class = apply_filters('lsx_layout_selector', $main_class, $class, $layout, $size); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - if ( 'sidebar' === $class ) { |
|
| 51 | - $return_class = apply_filters( 'lsx_layout_selector', $sidebar_class, $class, $layout, $size ); |
|
| 50 | + if ('sidebar' === $class) { |
|
| 51 | + $return_class = apply_filters('lsx_layout_selector', $sidebar_class, $class, $layout, $size); |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | return $return_class; |
| 55 | 55 | } |
| 56 | 56 | endif; |
| 57 | 57 | |
| 58 | -if ( ! function_exists( 'lsx_main_class' ) ) : |
|
| 58 | +if ( ! function_exists('lsx_main_class')) : |
|
| 59 | 59 | /** |
| 60 | 60 | * .main classes. |
| 61 | 61 | * |
@@ -63,11 +63,11 @@ discard block |
||
| 63 | 63 | * @subpackage layout |
| 64 | 64 | */ |
| 65 | 65 | function lsx_main_class() { |
| 66 | - return lsx_layout_selector( 'main' ); |
|
| 66 | + return lsx_layout_selector('main'); |
|
| 67 | 67 | } |
| 68 | 68 | endif; |
| 69 | 69 | |
| 70 | -if ( ! function_exists( 'lsx_sidebar_class' ) ) : |
|
| 70 | +if ( ! function_exists('lsx_sidebar_class')) : |
|
| 71 | 71 | /** |
| 72 | 72 | * .sidebar classes. |
| 73 | 73 | * |
@@ -75,47 +75,47 @@ discard block |
||
| 75 | 75 | * @subpackage layout |
| 76 | 76 | */ |
| 77 | 77 | function lsx_sidebar_class() { |
| 78 | - return lsx_layout_selector( 'sidebar' ); |
|
| 78 | + return lsx_layout_selector('sidebar'); |
|
| 79 | 79 | } |
| 80 | 80 | endif; |
| 81 | 81 | |
| 82 | -if ( ! function_exists( 'lsx_header_classes' ) ) : |
|
| 82 | +if ( ! function_exists('lsx_header_classes')) : |
|
| 83 | 83 | /** |
| 84 | 84 | * Output the classes for the header. |
| 85 | 85 | * |
| 86 | 86 | * @package lsx |
| 87 | 87 | * @subpackage layout |
| 88 | 88 | */ |
| 89 | - function lsx_header_classes( $additional = false ) { |
|
| 89 | + function lsx_header_classes($additional = false) { |
|
| 90 | 90 | $classes = 'banner navbar navbar-default'; |
| 91 | 91 | |
| 92 | - if ( false !== $additional ) { |
|
| 92 | + if (false !== $additional) { |
|
| 93 | 93 | $classes .= ' ' . $additional; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - echo esc_attr( $classes ); |
|
| 96 | + echo esc_attr($classes); |
|
| 97 | 97 | } |
| 98 | 98 | endif; |
| 99 | 99 | |
| 100 | -if ( ! function_exists( 'lsx_top_menu_classes' ) ) : |
|
| 100 | +if ( ! function_exists('lsx_top_menu_classes')) : |
|
| 101 | 101 | /** |
| 102 | 102 | * Output the classes for the top-menu. |
| 103 | 103 | * |
| 104 | 104 | * @package lsx |
| 105 | 105 | * @subpackage layout |
| 106 | 106 | */ |
| 107 | - function lsx_top_menu_classes( $additional = false ) { |
|
| 107 | + function lsx_top_menu_classes($additional = false) { |
|
| 108 | 108 | $classes = 'top-menu-default'; |
| 109 | 109 | |
| 110 | - if ( false !== $additional ) { |
|
| 110 | + if (false !== $additional) { |
|
| 111 | 111 | $classes .= ' ' . $additional; |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - echo esc_attr( $classes ); |
|
| 114 | + echo esc_attr($classes); |
|
| 115 | 115 | } |
| 116 | 116 | endif; |
| 117 | 117 | |
| 118 | -if ( ! function_exists( 'lsx_add_footer_sidebar_area' ) ) : |
|
| 118 | +if ( ! function_exists('lsx_add_footer_sidebar_area')) : |
|
| 119 | 119 | /** |
| 120 | 120 | * Output the Footer CTA and/pr Footer Widgets. |
| 121 | 121 | * |
@@ -123,32 +123,32 @@ discard block |
||
| 123 | 123 | * @subpackage layout |
| 124 | 124 | */ |
| 125 | 125 | function lsx_add_footer_sidebar_area() { |
| 126 | - if ( is_active_sidebar( 'sidebar-footer-cta' ) ) : ?> |
|
| 126 | + if (is_active_sidebar('sidebar-footer-cta')) : ?> |
|
| 127 | 127 | <div id="footer-cta"> |
| 128 | 128 | <div class="container"> |
| 129 | 129 | <div class="lsx-full-width"> |
| 130 | 130 | <div class="lsx-hero-unit"> |
| 131 | - <?php dynamic_sidebar( 'sidebar-footer-cta' ); ?> |
|
| 131 | + <?php dynamic_sidebar('sidebar-footer-cta'); ?> |
|
| 132 | 132 | </div> |
| 133 | 133 | </div> |
| 134 | 134 | </div> |
| 135 | 135 | </div> |
| 136 | 136 | <?php endif; ?> |
| 137 | 137 | |
| 138 | - <?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?> |
|
| 138 | + <?php if (is_active_sidebar('sidebar-footer')) : ?> |
|
| 139 | 139 | <div id="footer-widgets"> |
| 140 | 140 | <div class="container"> |
| 141 | 141 | <div class="row"> |
| 142 | - <?php dynamic_sidebar( 'sidebar-footer' ); ?> |
|
| 142 | + <?php dynamic_sidebar('sidebar-footer'); ?> |
|
| 143 | 143 | </div> |
| 144 | 144 | </div> |
| 145 | 145 | </div> |
| 146 | 146 | <?php endif; |
| 147 | 147 | } |
| 148 | - add_action( 'lsx_footer_before', 'lsx_add_footer_sidebar_area' ); |
|
| 148 | + add_action('lsx_footer_before', 'lsx_add_footer_sidebar_area'); |
|
| 149 | 149 | endif; |
| 150 | 150 | |
| 151 | -if ( ! function_exists( 'lsx_global_header' ) ) : |
|
| 151 | +if ( ! function_exists('lsx_global_header')) : |
|
| 152 | 152 | /** |
| 153 | 153 | * Displays the global header. |
| 154 | 154 | * |
@@ -156,23 +156,23 @@ discard block |
||
| 156 | 156 | * @subpackage layout |
| 157 | 157 | */ |
| 158 | 158 | function lsx_global_header() { |
| 159 | - $show_on_front = get_option( 'show_on_front' ); |
|
| 159 | + $show_on_front = get_option('show_on_front'); |
|
| 160 | 160 | $queried_object = get_queried_object(); |
| 161 | 161 | $default_size = 'sm'; |
| 162 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
| 162 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
| 163 | 163 | |
| 164 | 164 | //Pages have their own banner function 'lsx_page_banner()' |
| 165 | 165 | // if ( function_exists( 'is_woocommerce' ) && ( is_woocommerce() || is_checkout() || is_cart() || is_account_page() ) ) { |
| 166 | 166 | // return; |
| 167 | 167 | // } |
| 168 | 168 | //Product pages have their own banner function 'lsx_page_banner()' |
| 169 | - if ( function_exists( 'is_woocommerce' ) && ( is_product() ) ) { |
|
| 169 | + if (function_exists('is_woocommerce') && (is_product())) { |
|
| 170 | 170 | return; |
| 171 | 171 | } |
| 172 | 172 | |
| 173 | - if ( is_page() && ( 'page' !== $show_on_front || ! is_front_page() ) ) : |
|
| 173 | + if (is_page() && ('page' !== $show_on_front || ! is_front_page())) : |
|
| 174 | 174 | ?> |
| 175 | - <div class="archive-header-wrapper banner-page col-<?php echo esc_attr( $size ); ?>-12"> |
|
| 175 | + <div class="archive-header-wrapper banner-page col-<?php echo esc_attr($size); ?>-12"> |
|
| 176 | 176 | <?php lsx_global_header_inner_bottom(); ?> |
| 177 | 177 | <header class="archive-header"> |
| 178 | 178 | <h1 class="archive-title"><?php the_title(); ?></h1> |
@@ -180,26 +180,26 @@ discard block |
||
| 180 | 180 | |
| 181 | 181 | </div> |
| 182 | 182 | <?php |
| 183 | - elseif ( is_single() && ! is_singular( 'post' ) ) : |
|
| 183 | + elseif (is_single() && ! is_singular('post')) : |
|
| 184 | 184 | ?> |
| 185 | - <div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12"> |
|
| 185 | + <div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12"> |
|
| 186 | 186 | <?php lsx_global_header_inner_bottom(); ?> |
| 187 | 187 | <header class="archive-header"> |
| 188 | - <h1 class="archive-title"><?php echo wp_kses_post( apply_filters( 'lsx_global_header_title', get_the_title() ) ); ?></h1> |
|
| 188 | + <h1 class="archive-title"><?php echo wp_kses_post(apply_filters('lsx_global_header_title', get_the_title())); ?></h1> |
|
| 189 | 189 | </header> |
| 190 | 190 | |
| 191 | 191 | </div> |
| 192 | 192 | <?php |
| 193 | - elseif ( is_search() ) : |
|
| 193 | + elseif (is_search()) : |
|
| 194 | 194 | ?> |
| 195 | - <div class="archive-header-wrapper banner-search col-<?php echo esc_attr( $size ); ?>-12"> |
|
| 195 | + <div class="archive-header-wrapper banner-search col-<?php echo esc_attr($size); ?>-12"> |
|
| 196 | 196 | <?php lsx_global_header_inner_bottom(); ?> |
| 197 | 197 | <header class="archive-header"> |
| 198 | 198 | <h1 class="archive-title"> |
| 199 | 199 | <?php |
| 200 | 200 | printf( |
| 201 | 201 | /* Translators: %s: search term/query */ |
| 202 | - esc_html__( 'Search Results for: %s', 'lsx' ), |
|
| 202 | + esc_html__('Search Results for: %s', 'lsx'), |
|
| 203 | 203 | '<span>' . get_search_query() . '</span>' |
| 204 | 204 | ); |
| 205 | 205 | ?> |
@@ -208,12 +208,12 @@ discard block |
||
| 208 | 208 | |
| 209 | 209 | </div> |
| 210 | 210 | <?php |
| 211 | - elseif ( is_author() ) : |
|
| 211 | + elseif (is_author()) : |
|
| 212 | 212 | $author = get_the_author(); |
| 213 | - $author_avatar = get_avatar( get_the_author_meta( 'ID' ), 256 ); |
|
| 213 | + $author_avatar = get_avatar(get_the_author_meta('ID'), 256); |
|
| 214 | 214 | $author_bio = get_the_archive_description(); |
| 215 | 215 | ?> |
| 216 | - <div class="archive-header-wrapper banner-archive-author col-<?php echo esc_attr( $size ); ?>-12"> |
|
| 216 | + <div class="archive-header-wrapper banner-archive-author col-<?php echo esc_attr($size); ?>-12"> |
|
| 217 | 217 | <?php lsx_global_header_inner_bottom(); ?> |
| 218 | 218 | <header class="archive-header"> |
| 219 | 219 | <h1 class="archive-title"><?php the_archive_title(); ?></h1> |
@@ -221,16 +221,16 @@ discard block |
||
| 221 | 221 | |
| 222 | 222 | </div> |
| 223 | 223 | <?php |
| 224 | - elseif ( is_archive() ) : |
|
| 224 | + elseif (is_archive()) : |
|
| 225 | 225 | ?> |
| 226 | - <div class="archive-header-wrapper banner-archive col-<?php echo esc_attr( $size ); ?>-12"> |
|
| 226 | + <div class="archive-header-wrapper banner-archive col-<?php echo esc_attr($size); ?>-12"> |
|
| 227 | 227 | <?php lsx_global_header_inner_bottom(); ?> |
| 228 | 228 | <header class="archive-header"> |
| 229 | 229 | <h1 class="archive-title"> |
| 230 | - <?php if ( has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax( 'post_format' ) ) { ?> |
|
| 231 | - <?php the_archive_title( esc_html__( 'Type:', 'lsx' ) ); ?> |
|
| 230 | + <?php if (has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax('post_format')) { ?> |
|
| 231 | + <?php the_archive_title(esc_html__('Type:', 'lsx')); ?> |
|
| 232 | 232 | <?php } else { ?> |
| 233 | - <?php echo wp_kses_post( apply_filters( 'lsx_global_header_title', get_the_archive_title() ) ); ?> |
|
| 233 | + <?php echo wp_kses_post(apply_filters('lsx_global_header_title', get_the_archive_title())); ?> |
|
| 234 | 234 | <?php } ?> |
| 235 | 235 | </h1> |
| 236 | 236 | |
@@ -238,36 +238,36 @@ discard block |
||
| 238 | 238 | </header> |
| 239 | 239 | </div> |
| 240 | 240 | <?php |
| 241 | - elseif ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object->ID ) : |
|
| 241 | + elseif ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object->ID) : |
|
| 242 | 242 | ?> |
| 243 | - <div class="archive-header-wrapper banner-page col-<?php echo esc_attr( $size ); ?>-12"> |
|
| 243 | + <div class="archive-header-wrapper banner-page col-<?php echo esc_attr($size); ?>-12"> |
|
| 244 | 244 | <?php lsx_global_header_inner_bottom(); ?> |
| 245 | 245 | <header class="archive-header"> |
| 246 | - <h1 class="archive-title"><?php esc_html_e( 'Blog', 'lsx' ); ?></h1> |
|
| 246 | + <h1 class="archive-title"><?php esc_html_e('Blog', 'lsx'); ?></h1> |
|
| 247 | 247 | </header> |
| 248 | 248 | |
| 249 | 249 | </div> |
| 250 | 250 | <?php |
| 251 | - elseif ( ! is_singular( 'post' ) ) : |
|
| 251 | + elseif ( ! is_singular('post')) : |
|
| 252 | 252 | // Display only the breadcrumbs |
| 253 | 253 | ?> |
| 254 | - <div class="archive-header-wrapper banner-singular col-<?php echo esc_attr( $size ); ?>-12"> |
|
| 254 | + <div class="archive-header-wrapper banner-singular col-<?php echo esc_attr($size); ?>-12"> |
|
| 255 | 255 | <?php lsx_global_header_inner_bottom(); ?> |
| 256 | 256 | </div> |
| 257 | 257 | <?php |
| 258 | - elseif ( ( true === apply_filters( 'lsx_global_header_disable', false ) ) && ( ! is_search() ) ) : |
|
| 258 | + elseif ((true === apply_filters('lsx_global_header_disable', false)) && ( ! is_search())) : |
|
| 259 | 259 | // Display only the breadcrumbs |
| 260 | 260 | ?> |
| 261 | - <div class="archive-header-wrapper banner-global col-<?php echo esc_attr( $size ); ?>-12"> |
|
| 261 | + <div class="archive-header-wrapper banner-global col-<?php echo esc_attr($size); ?>-12"> |
|
| 262 | 262 | <?php lsx_global_header_inner_bottom(); ?> |
| 263 | 263 | </div> |
| 264 | 264 | <?php |
| 265 | 265 | endif; |
| 266 | 266 | } |
| 267 | - add_action( 'lsx_content_wrap_before', 'lsx_global_header' ); |
|
| 267 | + add_action('lsx_content_wrap_before', 'lsx_global_header'); |
|
| 268 | 268 | endif; |
| 269 | 269 | |
| 270 | -if ( ! function_exists( 'lsx_author_extra_info' ) ) : |
|
| 270 | +if ( ! function_exists('lsx_author_extra_info')) : |
|
| 271 | 271 | /** |
| 272 | 272 | * Displays the author extra info. |
| 273 | 273 | * |
@@ -276,83 +276,83 @@ discard block |
||
| 276 | 276 | */ |
| 277 | 277 | function lsx_author_extra_info() { |
| 278 | 278 | $default_size = 'sm'; |
| 279 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
| 279 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
| 280 | 280 | |
| 281 | - if ( is_author() ) : |
|
| 282 | - $author_id = get_the_author_meta( 'ID' ); |
|
| 281 | + if (is_author()) : |
|
| 282 | + $author_id = get_the_author_meta('ID'); |
|
| 283 | 283 | $author = get_the_author(); |
| 284 | - $author_avatar = get_avatar( $author_id, 400 ); |
|
| 284 | + $author_avatar = get_avatar($author_id, 400); |
|
| 285 | 285 | $author_bio = get_the_archive_description(); |
| 286 | - $author_url = get_the_author_meta( 'url', $author_id ); |
|
| 287 | - $author_email = get_the_author_meta( 'email', $author_id ); |
|
| 288 | - $author_facebook = get_the_author_meta( 'facebook', $author_id ); |
|
| 289 | - $author_linkedin = get_the_author_meta( 'linkedin', $author_id ); |
|
| 290 | - $author_twitter = get_the_author_meta( 'twitter', $author_id ); |
|
| 291 | - $author_googleplus = get_the_author_meta( 'googleplus', $author_id ); |
|
| 286 | + $author_url = get_the_author_meta('url', $author_id); |
|
| 287 | + $author_email = get_the_author_meta('email', $author_id); |
|
| 288 | + $author_facebook = get_the_author_meta('facebook', $author_id); |
|
| 289 | + $author_linkedin = get_the_author_meta('linkedin', $author_id); |
|
| 290 | + $author_twitter = get_the_author_meta('twitter', $author_id); |
|
| 291 | + $author_googleplus = get_the_author_meta('googleplus', $author_id); |
|
| 292 | 292 | ?> |
| 293 | - <div class="col-<?php echo esc_attr( $size ); ?>-12"> |
|
| 293 | + <div class="col-<?php echo esc_attr($size); ?>-12"> |
|
| 294 | 294 | <div class="archive-author-data"> |
| 295 | 295 | <div class="row"> |
| 296 | - <?php if ( ! empty( $author_avatar ) ) : ?> |
|
| 296 | + <?php if ( ! empty($author_avatar)) : ?> |
|
| 297 | 297 | <div class="col-xs-12 col-sm-4 col-md-3"> |
| 298 | - <figure class="archive-author-avatar"><?php echo wp_kses_post( $author_avatar ); ?></figure> |
|
| 298 | + <figure class="archive-author-avatar"><?php echo wp_kses_post($author_avatar); ?></figure> |
|
| 299 | 299 | </div> |
| 300 | 300 | <?php endif; ?> |
| 301 | 301 | <div class="col-xs-12 col-sm-8 col-md-9"> |
| 302 | - <a class="back-to-blog" href="<?php echo ( esc_url( get_post_type_archive_link( 'post' ) ) ); ?>"><?php echo esc_html__( 'Back To Blog', 'lsx' ); ?></a> |
|
| 302 | + <a class="back-to-blog" href="<?php echo (esc_url(get_post_type_archive_link('post'))); ?>"><?php echo esc_html__('Back To Blog', 'lsx'); ?></a> |
|
| 303 | 303 | <!-- Name --> |
| 304 | 304 | <h2 class="archive-author-title"> |
| 305 | 305 | <?php |
| 306 | - if ( '' !== $author ) { |
|
| 307 | - echo esc_html( $author ); |
|
| 306 | + if ('' !== $author) { |
|
| 307 | + echo esc_html($author); |
|
| 308 | 308 | } |
| 309 | 309 | ?> |
| 310 | 310 | </h2> |
| 311 | 311 | <!-- Social --> |
| 312 | - <?php if ( ! empty( $author_url ) || ! empty( $author_email ) || ! empty( $author_facebook ) || ! empty( $author_twitter ) || ! empty( $author_googleplus ) ) : ?> |
|
| 312 | + <?php if ( ! empty($author_url) || ! empty($author_email) || ! empty($author_facebook) || ! empty($author_twitter) || ! empty($author_googleplus)) : ?> |
|
| 313 | 313 | <div class="archive-author-social-links"> |
| 314 | - <?php if ( ! empty( $author_url ) ) : ?> |
|
| 315 | - <a href="<?php echo esc_url( $author_url ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a> |
|
| 314 | + <?php if ( ! empty($author_url)) : ?> |
|
| 315 | + <a href="<?php echo esc_url($author_url); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a> |
|
| 316 | 316 | <?php endif; ?> |
| 317 | 317 | |
| 318 | - <?php if ( ! empty( $author_email ) ) : ?> |
|
| 319 | - <a href="mailto:<?php echo esc_attr( $author_email ); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a> |
|
| 318 | + <?php if ( ! empty($author_email)) : ?> |
|
| 319 | + <a href="mailto:<?php echo esc_attr($author_email); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a> |
|
| 320 | 320 | <?php endif; ?> |
| 321 | 321 | |
| 322 | - <?php if ( ! empty( $author_facebook ) ) : ?> |
|
| 323 | - <a href="<?php echo esc_url( $author_facebook ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a> |
|
| 322 | + <?php if ( ! empty($author_facebook)) : ?> |
|
| 323 | + <a href="<?php echo esc_url($author_facebook); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a> |
|
| 324 | 324 | <?php endif; ?> |
| 325 | 325 | |
| 326 | - <?php if ( ! empty( $author_twitter ) ) : ?> |
|
| 327 | - <a href="https://twitter.com/<?php echo esc_attr( $author_twitter ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> |
|
| 326 | + <?php if ( ! empty($author_twitter)) : ?> |
|
| 327 | + <a href="https://twitter.com/<?php echo esc_attr($author_twitter); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> |
|
| 328 | 328 | <?php endif; ?> |
| 329 | 329 | |
| 330 | - <?php if ( ! empty( $author_linkedin ) ) : ?> |
|
| 331 | - <a href="<?php echo esc_url( $author_linkedin ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a> |
|
| 330 | + <?php if ( ! empty($author_linkedin)) : ?> |
|
| 331 | + <a href="<?php echo esc_url($author_linkedin); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a> |
|
| 332 | 332 | <?php endif; ?> |
| 333 | 333 | |
| 334 | - <?php if ( ! empty( $author_googleplus ) ) : ?> |
|
| 335 | - <a href="<?php echo esc_url( $author_googleplus ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a> |
|
| 334 | + <?php if ( ! empty($author_googleplus)) : ?> |
|
| 335 | + <a href="<?php echo esc_url($author_googleplus); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a> |
|
| 336 | 336 | <?php endif; ?> |
| 337 | 337 | </div> |
| 338 | 338 | <?php endif; ?> |
| 339 | 339 | |
| 340 | 340 | <!-- Bio --> |
| 341 | - <?php if ( ! empty( $author_bio ) ) : ?> |
|
| 342 | - <p class="archive-author-bio"><?php echo wp_kses_post( $author_bio ); ?></p> |
|
| 341 | + <?php if ( ! empty($author_bio)) : ?> |
|
| 342 | + <p class="archive-author-bio"><?php echo wp_kses_post($author_bio); ?></p> |
|
| 343 | 343 | <?php endif; ?> |
| 344 | 344 | </div> |
| 345 | 345 | </div> |
| 346 | 346 | </div> |
| 347 | - <h2><?php echo esc_html__( 'Posts', 'lsx' ); ?></h2> |
|
| 347 | + <h2><?php echo esc_html__('Posts', 'lsx'); ?></h2> |
|
| 348 | 348 | </div> |
| 349 | 349 | <?php |
| 350 | 350 | endif; |
| 351 | 351 | } |
| 352 | - add_action( 'lsx_content_wrap_before', 'lsx_author_extra_info', 11 ); |
|
| 352 | + add_action('lsx_content_wrap_before', 'lsx_author_extra_info', 11); |
|
| 353 | 353 | endif; |
| 354 | 354 | |
| 355 | -if ( ! function_exists( 'lsx_post_header' ) ) : |
|
| 355 | +if ( ! function_exists('lsx_post_header')) : |
|
| 356 | 356 | /** |
| 357 | 357 | * Displays the post header. |
| 358 | 358 | * |
@@ -361,21 +361,21 @@ discard block |
||
| 361 | 361 | */ |
| 362 | 362 | function lsx_post_header() { |
| 363 | 363 | $default_size = 'sm'; |
| 364 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
| 364 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
| 365 | 365 | |
| 366 | - if ( is_singular( 'post' ) ) : |
|
| 366 | + if (is_singular('post')) : |
|
| 367 | 367 | $format = get_post_format(); |
| 368 | 368 | |
| 369 | - if ( false === $format ) { |
|
| 369 | + if (false === $format) { |
|
| 370 | 370 | $format = 'standard'; |
| 371 | 371 | } |
| 372 | 372 | |
| 373 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
| 373 | + $format = lsx_translate_format_to_fontawesome($format); |
|
| 374 | 374 | ?> |
| 375 | - <div class="archive-header-wrapper banner-post-header col-<?php echo esc_attr( $size ); ?>-12"> |
|
| 375 | + <div class="archive-header-wrapper banner-post-header col-<?php echo esc_attr($size); ?>-12"> |
|
| 376 | 376 | <header class="archive-header"> |
| 377 | 377 | <h1 class="archive-title"> |
| 378 | - <i class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></i> |
|
| 378 | + <i class="format-link fa fa-<?php echo esc_attr($format); ?>"></i> |
|
| 379 | 379 | <span><?php the_title(); ?></span> |
| 380 | 380 | </h1> |
| 381 | 381 | </header> |
@@ -383,10 +383,10 @@ discard block |
||
| 383 | 383 | <?php |
| 384 | 384 | endif; |
| 385 | 385 | } |
| 386 | - add_action( 'lsx_entry_top', 'lsx_post_header' ); |
|
| 386 | + add_action('lsx_entry_top', 'lsx_post_header'); |
|
| 387 | 387 | endif; |
| 388 | 388 | |
| 389 | -if ( ! function_exists( 'lsx_add_viewport_meta_tag' ) ) : |
|
| 389 | +if ( ! function_exists('lsx_add_viewport_meta_tag')) : |
|
| 390 | 390 | /** |
| 391 | 391 | * Add Viewport Meta Tag to head. |
| 392 | 392 | * |
@@ -398,10 +398,10 @@ discard block |
||
| 398 | 398 | <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"> |
| 399 | 399 | <?php |
| 400 | 400 | } |
| 401 | - add_action( 'wp_head', 'lsx_add_viewport_meta_tag' ); |
|
| 401 | + add_action('wp_head', 'lsx_add_viewport_meta_tag'); |
|
| 402 | 402 | endif; |
| 403 | 403 | |
| 404 | -if ( ! function_exists( 'lsx_header_search_form' ) ) : |
|
| 404 | +if ( ! function_exists('lsx_header_search_form')) : |
|
| 405 | 405 | /** |
| 406 | 406 | * Add a search form to just above the nav menu. |
| 407 | 407 | * |
@@ -409,19 +409,19 @@ discard block |
||
| 409 | 409 | * @subpackage layout |
| 410 | 410 | */ |
| 411 | 411 | function lsx_header_search_form() { |
| 412 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
| 412 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
| 413 | 413 | |
| 414 | - if ( false !== $search_form || is_customize_preview() ) { |
|
| 415 | - get_search_form( true ); |
|
| 414 | + if (false !== $search_form || is_customize_preview()) { |
|
| 415 | + get_search_form(true); |
|
| 416 | 416 | } |
| 417 | 417 | } |
| 418 | - add_action( 'lsx_nav_before', 'lsx_header_search_form', 0 ); |
|
| 418 | + add_action('lsx_nav_before', 'lsx_header_search_form', 0); |
|
| 419 | 419 | endif; |
| 420 | 420 | |
| 421 | 421 | // Add entry meta to single post if active |
| 422 | -if ( ! function_exists( 'lsx_add_entry_meta' ) ) : |
|
| 422 | +if ( ! function_exists('lsx_add_entry_meta')) : |
|
| 423 | 423 | function lsx_add_entry_meta() { |
| 424 | - if ( is_single() && is_singular( 'post' ) ) { |
|
| 424 | + if (is_single() && is_singular('post')) { |
|
| 425 | 425 | ?> |
| 426 | 426 | <div class="entry-meta"> |
| 427 | 427 | <?php lsx_post_meta_single_top(); ?> |
@@ -429,5 +429,5 @@ discard block |
||
| 429 | 429 | <?php |
| 430 | 430 | } |
| 431 | 431 | } |
| 432 | - add_action( 'lsx_entry_top', 'lsx_add_entry_meta', 999 ); |
|
| 432 | + add_action('lsx_entry_top', 'lsx_add_entry_meta', 999); |
|
| 433 | 433 | endif; |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * @subpackage extras |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
@@ -16,10 +16,10 @@ discard block |
||
| 16 | 16 | * @package lsx |
| 17 | 17 | * @subpackage extras |
| 18 | 18 | */ |
| 19 | -add_filter( 'widget_text', 'shortcode_unautop' ); |
|
| 20 | -add_filter( 'widget_text', 'do_shortcode' ); |
|
| 19 | +add_filter('widget_text', 'shortcode_unautop'); |
|
| 20 | +add_filter('widget_text', 'do_shortcode'); |
|
| 21 | 21 | |
| 22 | -if ( ! function_exists( 'lsx_kses_allowed_html' ) ) : |
|
| 22 | +if ( ! function_exists('lsx_kses_allowed_html')) : |
|
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | 25 | * Enable extra attributes (srcset, sizes) in img tag. |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | * @package lsx |
| 28 | 28 | * @subpackage extras |
| 29 | 29 | */ |
| 30 | - function lsx_kses_allowed_html( $allowedtags, $context ) { |
|
| 30 | + function lsx_kses_allowed_html($allowedtags, $context) { |
|
| 31 | 31 | $allowedtags['img']['srcset'] = true; |
| 32 | 32 | $allowedtags['img']['sizes'] = true; |
| 33 | 33 | |
@@ -42,9 +42,9 @@ discard block |
||
| 42 | 42 | |
| 43 | 43 | endif; |
| 44 | 44 | |
| 45 | -add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 ); |
|
| 45 | +add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2); |
|
| 46 | 46 | |
| 47 | -if ( ! function_exists( 'lsx_body_class' ) ) : |
|
| 47 | +if ( ! function_exists('lsx_body_class')) : |
|
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * Add and remove body_class() classes. |
@@ -52,55 +52,55 @@ discard block |
||
| 52 | 52 | * @package lsx |
| 53 | 53 | * @subpackage extras |
| 54 | 54 | */ |
| 55 | - function lsx_body_class( $classes ) { |
|
| 55 | + function lsx_body_class($classes) { |
|
| 56 | 56 | global $post; |
| 57 | 57 | |
| 58 | - $header_layout = get_theme_mod( 'lsx_header_layout', 'inline' ); |
|
| 58 | + $header_layout = get_theme_mod('lsx_header_layout', 'inline'); |
|
| 59 | 59 | $classes[] = 'header-' . $header_layout; |
| 60 | 60 | |
| 61 | - if ( isset( $post ) ) { |
|
| 61 | + if (isset($post)) { |
|
| 62 | 62 | $classes[] = $post->post_name; |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - if ( class_exists( 'LSX_Banners' ) || empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) { |
|
| 66 | - $post_types = array( 'page', 'post' ); |
|
| 67 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
| 65 | + if (class_exists('LSX_Banners') || empty(apply_filters('lsx_banner_plugin_disable', false))) { |
|
| 66 | + $post_types = array('page', 'post'); |
|
| 67 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
| 68 | 68 | |
| 69 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) { |
|
| 69 | + if (is_singular($post_types) && has_post_thumbnail()) { |
|
| 70 | 70 | $classes[] = 'page-has-banner'; |
| 71 | 71 | } |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - if ( function_exists( 'tour_operator' ) ) { |
|
| 75 | - $post_types = array( 'page', 'post' ); |
|
| 74 | + if (function_exists('tour_operator')) { |
|
| 75 | + $post_types = array('page', 'post'); |
|
| 76 | 76 | |
| 77 | 77 | $classes[] = 'to-active'; |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) { |
|
| 80 | + if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) { |
|
| 81 | 81 | $classes[] = 'has-top-menu'; |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - $fixed_header = get_theme_mod( 'lsx_header_fixed', false ); |
|
| 84 | + $fixed_header = get_theme_mod('lsx_header_fixed', false); |
|
| 85 | 85 | |
| 86 | - if ( false !== $fixed_header ) { |
|
| 86 | + if (false !== $fixed_header) { |
|
| 87 | 87 | $classes[] = 'top-menu-fixed'; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
| 90 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
| 91 | 91 | |
| 92 | - if ( false !== $search_form ) { |
|
| 92 | + if (false !== $search_form) { |
|
| 93 | 93 | $classes[] = 'has-header-search'; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - $preloader_content = get_theme_mod( 'lsx_preloader_content_status', false ); |
|
| 96 | + $preloader_content = get_theme_mod('lsx_preloader_content_status', false); |
|
| 97 | 97 | |
| 98 | - if ( false !== $preloader_content ) { |
|
| 98 | + if (false !== $preloader_content) { |
|
| 99 | 99 | $classes[] = 'preloader-content-enable'; |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - $register_enabled = get_option( 'users_can_register', false ); |
|
| 103 | - if ( ( $register_enabled ) && is_page( 'my-account' ) && is_singular() ) { |
|
| 102 | + $register_enabled = get_option('users_can_register', false); |
|
| 103 | + if (($register_enabled) && is_page('my-account') && is_singular()) { |
|
| 104 | 104 | $classes[] = 'register-enabled'; |
| 105 | 105 | } |
| 106 | 106 | |
@@ -109,9 +109,9 @@ discard block |
||
| 109 | 109 | |
| 110 | 110 | endif; |
| 111 | 111 | |
| 112 | -add_filter( 'body_class', 'lsx_body_class' ); |
|
| 112 | +add_filter('body_class', 'lsx_body_class'); |
|
| 113 | 113 | |
| 114 | -if ( ! function_exists( 'lsx_embed_wrap' ) ) : |
|
| 114 | +if ( ! function_exists('lsx_embed_wrap')) : |
|
| 115 | 115 | |
| 116 | 116 | /** |
| 117 | 117 | * Wrap embedded media as suggested by Readability. |
@@ -122,8 +122,8 @@ discard block |
||
| 122 | 122 | * @link https://gist.github.com/965956 |
| 123 | 123 | * @link http://www.readability.com/publishers/guidelines#publisher |
| 124 | 124 | */ |
| 125 | - function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) { |
|
| 126 | - if ( false !== strpos( $cache, '<iframe' ) ) { |
|
| 125 | + function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') { |
|
| 126 | + if (false !== strpos($cache, '<iframe')) { |
|
| 127 | 127 | return '<div class="entry-content-asset">' . $cache . '</div>'; |
| 128 | 128 | } |
| 129 | 129 | |
@@ -132,9 +132,9 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | endif; |
| 134 | 134 | |
| 135 | -add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 ); |
|
| 135 | +add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4); |
|
| 136 | 136 | |
| 137 | -if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) : |
|
| 137 | +if ( ! function_exists('lsx_remove_self_closing_tags')) : |
|
| 138 | 138 | |
| 139 | 139 | /** |
| 140 | 140 | * Remove unnecessary self-closing tags. |
@@ -142,17 +142,17 @@ discard block |
||
| 142 | 142 | * @package lsx |
| 143 | 143 | * @subpackage extras |
| 144 | 144 | */ |
| 145 | - function lsx_remove_self_closing_tags( $input ) { |
|
| 146 | - return str_replace( ' />', '>', $input ); |
|
| 145 | + function lsx_remove_self_closing_tags($input) { |
|
| 146 | + return str_replace(' />', '>', $input); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | endif; |
| 150 | 150 | |
| 151 | -add_filter( 'get_avatar', 'lsx_remove_self_closing_tags' ); // <img /> |
|
| 152 | -add_filter( 'comment_id_fields', 'lsx_remove_self_closing_tags' ); // <input /> |
|
| 153 | -add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img /> |
|
| 151 | +add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img /> |
|
| 152 | +add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input /> |
|
| 153 | +add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img /> |
|
| 154 | 154 | |
| 155 | -if ( ! function_exists( 'lsx_is_element_empty' ) ) : |
|
| 155 | +if ( ! function_exists('lsx_is_element_empty')) : |
|
| 156 | 156 | |
| 157 | 157 | /** |
| 158 | 158 | * Checks if a Nav $element is empty or not. |
@@ -160,14 +160,14 @@ discard block |
||
| 160 | 160 | * @package lsx |
| 161 | 161 | * @subpackage extras |
| 162 | 162 | */ |
| 163 | - function lsx_is_element_empty( $element ) { |
|
| 164 | - $element = trim( $element ); |
|
| 165 | - return empty( $element ) ? false : true; |
|
| 163 | + function lsx_is_element_empty($element) { |
|
| 164 | + $element = trim($element); |
|
| 165 | + return empty($element) ? false : true; |
|
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | endif; |
| 169 | 169 | |
| 170 | -if ( ! function_exists( 'lsx_get_thumbnail' ) ) : |
|
| 170 | +if ( ! function_exists('lsx_get_thumbnail')) : |
|
| 171 | 171 | |
| 172 | 172 | /** |
| 173 | 173 | * return the responsive images. |
@@ -175,58 +175,58 @@ discard block |
||
| 175 | 175 | * @package lsx |
| 176 | 176 | * @subpackage extras |
| 177 | 177 | */ |
| 178 | - function lsx_get_thumbnail( $size, $image_src = false ) { |
|
| 179 | - if ( false === $image_src ) { |
|
| 178 | + function lsx_get_thumbnail($size, $image_src = false) { |
|
| 179 | + if (false === $image_src) { |
|
| 180 | 180 | $post_id = get_the_ID(); |
| 181 | - $post_thumbnail_id = get_post_thumbnail_id( $post_id ); |
|
| 182 | - } elseif ( false !== $image_src ) { |
|
| 183 | - if ( is_numeric( $image_src ) ) { |
|
| 181 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 182 | + } elseif (false !== $image_src) { |
|
| 183 | + if (is_numeric($image_src)) { |
|
| 184 | 184 | $post_thumbnail_id = $image_src; |
| 185 | 185 | } else { |
| 186 | - $post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src ); |
|
| 186 | + $post_thumbnail_id = lsx_get_attachment_id_from_src($image_src); |
|
| 187 | 187 | } |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - $size = apply_filters( 'lsx_thumbnail_size', $size ); |
|
| 190 | + $size = apply_filters('lsx_thumbnail_size', $size); |
|
| 191 | 191 | $img = ''; |
| 192 | 192 | $lazy_img = ''; |
| 193 | 193 | $image_url = ''; |
| 194 | 194 | |
| 195 | - if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) { |
|
| 195 | + if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) { |
|
| 196 | 196 | $srcset = false; |
| 197 | - $temp_img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
| 198 | - if ( ! empty( $temp_img ) ) { |
|
| 199 | - $img = $temp_img[0]; |
|
| 197 | + $temp_img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
| 198 | + if ( ! empty($temp_img)) { |
|
| 199 | + $img = $temp_img[0]; |
|
| 200 | 200 | } |
| 201 | 201 | } else { |
| 202 | 202 | $srcset = true; |
| 203 | - $img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size ); |
|
| 203 | + $img = wp_get_attachment_image_srcset($post_thumbnail_id, $size); |
|
| 204 | 204 | |
| 205 | - $temp_lazy = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
| 206 | - if ( ! empty( $temp_lazy ) ) { |
|
| 205 | + $temp_lazy = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
| 206 | + if ( ! empty($temp_lazy)) { |
|
| 207 | 207 | $lazy_img = $temp_lazy[0]; |
| 208 | 208 | } |
| 209 | 209 | |
| 210 | - if ( empty( $img ) ) { |
|
| 210 | + if (empty($img)) { |
|
| 211 | 211 | $srcset = false; |
| 212 | - if ( ! empty( $lazy_img ) ) { |
|
| 212 | + if ( ! empty($lazy_img)) { |
|
| 213 | 213 | $img = $lazy_img; |
| 214 | 214 | } |
| 215 | 215 | } |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - if ( '' !== $img ) { |
|
| 218 | + if ('' !== $img) { |
|
| 219 | 219 | $image_url = $img; |
| 220 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" '; |
|
| 221 | - if ( $srcset ) { |
|
| 222 | - $img .= 'srcset="' . esc_attr( $image_url ) . '" '; |
|
| 220 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" '; |
|
| 221 | + if ($srcset) { |
|
| 222 | + $img .= 'srcset="' . esc_attr($image_url) . '" '; |
|
| 223 | 223 | } else { |
| 224 | - $img .= 'src="' . esc_url( $image_url ) . '" '; |
|
| 224 | + $img .= 'src="' . esc_url($image_url) . '" '; |
|
| 225 | 225 | } |
| 226 | 226 | $img .= '/>'; |
| 227 | 227 | |
| 228 | - $img = apply_filters( 'lsx_lazyload_filter_images', $img ); |
|
| 229 | - $img = apply_filters( 'lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url ); |
|
| 228 | + $img = apply_filters('lsx_lazyload_filter_images', $img); |
|
| 229 | + $img = apply_filters('lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url); |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | return $img; |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | |
| 235 | 235 | endif; |
| 236 | 236 | |
| 237 | -if ( ! function_exists( 'lsx_thumbnail' ) ) : |
|
| 237 | +if ( ! function_exists('lsx_thumbnail')) : |
|
| 238 | 238 | |
| 239 | 239 | /** |
| 240 | 240 | * Output the Resonsive Images. |
@@ -242,13 +242,13 @@ discard block |
||
| 242 | 242 | * @package lsx |
| 243 | 243 | * @subpackage extras |
| 244 | 244 | */ |
| 245 | - function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) { |
|
| 246 | - echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) ); |
|
| 245 | + function lsx_thumbnail($size = 'thumbnail', $image_src = false) { |
|
| 246 | + echo wp_kses_post(lsx_get_thumbnail($size, $image_src)); |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | endif; |
| 250 | 250 | |
| 251 | -if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) : |
|
| 251 | +if ( ! function_exists('lsx_get_attachment_id_from_src')) : |
|
| 252 | 252 | |
| 253 | 253 | /** |
| 254 | 254 | * Gets the attachments ID from the src. |
@@ -256,13 +256,13 @@ discard block |
||
| 256 | 256 | * @package lsx |
| 257 | 257 | * @subpackage extras |
| 258 | 258 | */ |
| 259 | - function lsx_get_attachment_id_from_src( $image_src ) { |
|
| 260 | - $post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' ); |
|
| 259 | + function lsx_get_attachment_id_from_src($image_src) { |
|
| 260 | + $post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src'); |
|
| 261 | 261 | |
| 262 | - if ( false === $post_id ) { |
|
| 262 | + if (false === $post_id) { |
|
| 263 | 263 | global $wpdb; |
| 264 | - $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) ); |
|
| 265 | - wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 ); |
|
| 264 | + $post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src)); |
|
| 265 | + wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600); |
|
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | return $post_id; |
@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | |
| 271 | 271 | endif; |
| 272 | 272 | |
| 273 | -if ( ! function_exists( 'lsx_page_banner' ) ) : |
|
| 273 | +if ( ! function_exists('lsx_page_banner')) : |
|
| 274 | 274 | |
| 275 | 275 | /** |
| 276 | 276 | * Add Featured Image as Banner on Single Pages. |
@@ -279,30 +279,30 @@ discard block |
||
| 279 | 279 | * @subpackage extras |
| 280 | 280 | */ |
| 281 | 281 | function lsx_page_banner() { |
| 282 | - if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) { |
|
| 282 | + if (true === apply_filters('lsx_page_banner_disable', false)) { |
|
| 283 | 283 | return; |
| 284 | 284 | } |
| 285 | 285 | |
| 286 | - $post_types = array( 'page', 'post' ); |
|
| 287 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
| 286 | + $post_types = array('page', 'post'); |
|
| 287 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
| 288 | 288 | |
| 289 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) : |
|
| 289 | + if (is_singular($post_types) && has_post_thumbnail()) : |
|
| 290 | 290 | $bg_image = ''; |
| 291 | 291 | |
| 292 | - if ( has_post_thumbnail() ) { |
|
| 293 | - $temp_bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' ); |
|
| 294 | - if ( ! empty( $temp_bg_image ) ) { |
|
| 292 | + if (has_post_thumbnail()) { |
|
| 293 | + $temp_bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full'); |
|
| 294 | + if ( ! empty($temp_bg_image)) { |
|
| 295 | 295 | $bg_image = $temp_bg_image[0]; |
| 296 | 296 | } |
| 297 | 297 | } |
| 298 | 298 | |
| 299 | - if ( '' !== $bg_image ) : |
|
| 299 | + if ('' !== $bg_image) : |
|
| 300 | 300 | ?> |
| 301 | 301 | <div class="page-banner-wrap"> |
| 302 | 302 | <div class="page-banner"> |
| 303 | 303 | <?php lsx_banner_inner_top(); ?> |
| 304 | 304 | |
| 305 | - <div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div> |
|
| 305 | + <div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div> |
|
| 306 | 306 | |
| 307 | 307 | <div class="container"> |
| 308 | 308 | <header class="page-header"> |
@@ -321,11 +321,11 @@ discard block |
||
| 321 | 321 | |
| 322 | 322 | endif; |
| 323 | 323 | |
| 324 | -add_filter( 'lsx_banner_disable', 'lsx_disable_banner_for_blocks' ); |
|
| 325 | -add_filter( 'lsx_global_header_disable', 'lsx_disable_banner_for_blocks' ); |
|
| 324 | +add_filter('lsx_banner_disable', 'lsx_disable_banner_for_blocks'); |
|
| 325 | +add_filter('lsx_global_header_disable', 'lsx_disable_banner_for_blocks'); |
|
| 326 | 326 | |
| 327 | 327 | |
| 328 | -if ( ! function_exists( 'lsx_disable_banner_for_blocks' ) ) : |
|
| 328 | +if ( ! function_exists('lsx_disable_banner_for_blocks')) : |
|
| 329 | 329 | |
| 330 | 330 | /** |
| 331 | 331 | * Disable the Banner if the page is using Blocks |
@@ -336,15 +336,15 @@ discard block |
||
| 336 | 336 | * @param $disable boolean |
| 337 | 337 | * @return boolean |
| 338 | 338 | */ |
| 339 | - function lsx_disable_banner_for_blocks( $disable ) { |
|
| 339 | + function lsx_disable_banner_for_blocks($disable) { |
|
| 340 | 340 | $queried_object = get_queried_object_id(); |
| 341 | - $show_on_front = get_option( 'show_on_front' ); |
|
| 341 | + $show_on_front = get_option('show_on_front'); |
|
| 342 | 342 | |
| 343 | - if ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object ) { |
|
| 343 | + if ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object) { |
|
| 344 | 344 | return $disable; |
| 345 | 345 | } |
| 346 | 346 | |
| 347 | - if ( function_exists( 'has_blocks' ) && has_blocks() && ( ! is_archive() ) ) { |
|
| 347 | + if (function_exists('has_blocks') && has_blocks() && ( ! is_archive())) { |
|
| 348 | 348 | $disable = true; |
| 349 | 349 | } |
| 350 | 350 | return $disable; |
@@ -352,9 +352,9 @@ discard block |
||
| 352 | 352 | |
| 353 | 353 | endif; |
| 354 | 354 | |
| 355 | -add_action( 'lsx_header_after', 'lsx_page_banner' ); |
|
| 355 | +add_action('lsx_header_after', 'lsx_page_banner'); |
|
| 356 | 356 | |
| 357 | -if ( ! function_exists( 'lsx_form_submit_button' ) ) : |
|
| 357 | +if ( ! function_exists('lsx_form_submit_button')) : |
|
| 358 | 358 | |
| 359 | 359 | /** |
| 360 | 360 | * filter the Gravity Forms button type. |
@@ -366,15 +366,15 @@ discard block |
||
| 366 | 366 | * @param $form Object |
| 367 | 367 | * @return String |
| 368 | 368 | */ |
| 369 | - function lsx_form_submit_button( $button, $form ) { |
|
| 369 | + function lsx_form_submit_button($button, $form) { |
|
| 370 | 370 | return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>"; |
| 371 | 371 | } |
| 372 | 372 | |
| 373 | 373 | endif; |
| 374 | 374 | |
| 375 | -add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 ); |
|
| 375 | +add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2); |
|
| 376 | 376 | |
| 377 | -if ( ! function_exists( 'lsx_excerpt_more' ) ) : |
|
| 377 | +if ( ! function_exists('lsx_excerpt_more')) : |
|
| 378 | 378 | |
| 379 | 379 | /** |
| 380 | 380 | * Replaces the excerpt "more" text by a link. |
@@ -382,15 +382,15 @@ discard block |
||
| 382 | 382 | * @package lsx |
| 383 | 383 | * @subpackage extras |
| 384 | 384 | */ |
| 385 | - function lsx_excerpt_more( $more ) { |
|
| 385 | + function lsx_excerpt_more($more) { |
|
| 386 | 386 | return '...'; |
| 387 | 387 | } |
| 388 | 388 | |
| 389 | 389 | endif; |
| 390 | 390 | |
| 391 | -add_filter( 'excerpt_more', 'lsx_excerpt_more' ); |
|
| 391 | +add_filter('excerpt_more', 'lsx_excerpt_more'); |
|
| 392 | 392 | |
| 393 | -if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) : |
|
| 393 | +if ( ! function_exists('lsx_the_excerpt_filter')) : |
|
| 394 | 394 | |
| 395 | 395 | /** |
| 396 | 396 | * Add a continue reading link to the excerpt. |
@@ -398,7 +398,7 @@ discard block |
||
| 398 | 398 | * @package lsx |
| 399 | 399 | * @subpackage extras |
| 400 | 400 | */ |
| 401 | - function lsx_the_excerpt_filter( $excerpt ) { |
|
| 401 | + function lsx_the_excerpt_filter($excerpt) { |
|
| 402 | 402 | |
| 403 | 403 | $post_formats = array( |
| 404 | 404 | 'aside' => 'aside', |
@@ -411,23 +411,23 @@ discard block |
||
| 411 | 411 | 'audio' => 'audio', |
| 412 | 412 | ); |
| 413 | 413 | |
| 414 | - $show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', $post_formats ) ); |
|
| 414 | + $show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', $post_formats)); |
|
| 415 | 415 | |
| 416 | - if ( ! $show_full_content ) { |
|
| 417 | - if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) { |
|
| 418 | - $pagination = wp_link_pages( array( |
|
| 416 | + if ( ! $show_full_content) { |
|
| 417 | + if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) { |
|
| 418 | + $pagination = wp_link_pages(array( |
|
| 419 | 419 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
| 420 | 420 | 'after' => '</div></div>', |
| 421 | 421 | 'link_before' => '<span>', |
| 422 | 422 | 'link_after' => '</span>', |
| 423 | 423 | 'echo' => 0, |
| 424 | - ) ); |
|
| 424 | + )); |
|
| 425 | 425 | |
| 426 | - if ( ! empty( $pagination ) ) { |
|
| 426 | + if ( ! empty($pagination)) { |
|
| 427 | 427 | $excerpt .= $pagination; |
| 428 | 428 | } else { |
| 429 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Read More', 'lsx' ) . '</a></p>'; |
|
| 430 | - $excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more ); |
|
| 429 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Read More', 'lsx') . '</a></p>'; |
|
| 430 | + $excerpt .= apply_filters('excerpt_more_p', $excerpt_more); |
|
| 431 | 431 | } |
| 432 | 432 | } |
| 433 | 433 | } |
@@ -437,9 +437,9 @@ discard block |
||
| 437 | 437 | |
| 438 | 438 | endif; |
| 439 | 439 | |
| 440 | -add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 ); |
|
| 440 | +add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20); |
|
| 441 | 441 | |
| 442 | -if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) : |
|
| 442 | +if ( ! function_exists('lsx_full_width_widget_classes')) : |
|
| 443 | 443 | |
| 444 | 444 | /** |
| 445 | 445 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -447,8 +447,8 @@ discard block |
||
| 447 | 447 | * @package lsx |
| 448 | 448 | * @subpackage extras |
| 449 | 449 | */ |
| 450 | - function lsx_full_width_widget_classes( $params ) { |
|
| 451 | - if ( is_admin() ) { |
|
| 450 | + function lsx_full_width_widget_classes($params) { |
|
| 451 | + if (is_admin()) { |
|
| 452 | 452 | return $params; |
| 453 | 453 | } |
| 454 | 454 | |
@@ -457,9 +457,9 @@ discard block |
||
| 457 | 457 | $widget_id = $params[0]['widget_id']; |
| 458 | 458 | $widget_name = $params[0]['widget_name']; |
| 459 | 459 | |
| 460 | - if ( 'Text' === $widget_name ) { |
|
| 461 | - $wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback']; |
|
| 462 | - $wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
| 460 | + if ('Text' === $widget_name) { |
|
| 461 | + $wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback']; |
|
| 462 | + $wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
| 463 | 463 | } |
| 464 | 464 | |
| 465 | 465 | return $params; |
@@ -467,9 +467,9 @@ discard block |
||
| 467 | 467 | |
| 468 | 468 | endif; |
| 469 | 469 | |
| 470 | -add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' ); |
|
| 470 | +add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes'); |
|
| 471 | 471 | |
| 472 | -if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) : |
|
| 472 | +if ( ! function_exists('lsx_full_width_widget_custom_callback')) : |
|
| 473 | 473 | |
| 474 | 474 | /** |
| 475 | 475 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -483,25 +483,25 @@ discard block |
||
| 483 | 483 | $original_callback_params = func_get_args(); |
| 484 | 484 | $widget_id = $original_callback_params[0]['widget_id']; |
| 485 | 485 | |
| 486 | - $original_callback = $wp_registered_widgets[ $widget_id ]['original_callback']; |
|
| 487 | - $wp_registered_widgets[ $widget_id ]['callback'] = $original_callback; |
|
| 486 | + $original_callback = $wp_registered_widgets[$widget_id]['original_callback']; |
|
| 487 | + $wp_registered_widgets[$widget_id]['callback'] = $original_callback; |
|
| 488 | 488 | |
| 489 | - $widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base; |
|
| 489 | + $widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base; |
|
| 490 | 490 | |
| 491 | 491 | $widget_classname = ''; |
| 492 | 492 | |
| 493 | - if ( is_callable( $original_callback ) ) { |
|
| 493 | + if (is_callable($original_callback)) { |
|
| 494 | 494 | ob_start(); |
| 495 | - call_user_func_array( $original_callback, $original_callback_params ); |
|
| 495 | + call_user_func_array($original_callback, $original_callback_params); |
|
| 496 | 496 | $widget_output = ob_get_clean(); |
| 497 | 497 | |
| 498 | - echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) ); |
|
| 498 | + echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id)); |
|
| 499 | 499 | } |
| 500 | 500 | } |
| 501 | 501 | |
| 502 | 502 | endif; |
| 503 | 503 | |
| 504 | -if ( ! function_exists( 'lsx_full_width_widget_output' ) ) : |
|
| 504 | +if ( ! function_exists('lsx_full_width_widget_output')) : |
|
| 505 | 505 | |
| 506 | 506 | /** |
| 507 | 507 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -509,12 +509,12 @@ discard block |
||
| 509 | 509 | * @package lsx |
| 510 | 510 | * @subpackage extras |
| 511 | 511 | */ |
| 512 | - function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) { |
|
| 513 | - if ( 'text' === $widget_id_base ) { |
|
| 514 | - if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) { |
|
| 515 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output ); |
|
| 516 | - } elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) { |
|
| 517 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output ); |
|
| 512 | + function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) { |
|
| 513 | + if ('text' === $widget_id_base) { |
|
| 514 | + if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) { |
|
| 515 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output); |
|
| 516 | + } elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) { |
|
| 517 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output); |
|
| 518 | 518 | } |
| 519 | 519 | } |
| 520 | 520 | |
@@ -523,13 +523,13 @@ discard block |
||
| 523 | 523 | |
| 524 | 524 | endif; |
| 525 | 525 | |
| 526 | -add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 ); |
|
| 526 | +add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3); |
|
| 527 | 527 | |
| 528 | 528 | /** |
| 529 | 529 | * Check if the content has a restricted post format that needs to show a full excerpt. |
| 530 | 530 | */ |
| 531 | 531 | function lsx_post_format_force_content_on_list() { |
| 532 | - $post_formats = apply_filters( 'lsx_post_format_force_content_on_list', |
|
| 532 | + $post_formats = apply_filters('lsx_post_format_force_content_on_list', |
|
| 533 | 533 | array( |
| 534 | 534 | 'video' => 'video', |
| 535 | 535 | 'audio' => 'audio', |
@@ -538,7 +538,7 @@ discard block |
||
| 538 | 538 | ) |
| 539 | 539 | ); |
| 540 | 540 | $return = false; |
| 541 | - if ( ! has_post_format( $post_formats ) ) { |
|
| 541 | + if ( ! has_post_format($post_formats)) { |
|
| 542 | 542 | $return = true; |
| 543 | 543 | } |
| 544 | 544 | return $return; |
@@ -547,67 +547,67 @@ discard block |
||
| 547 | 547 | /** |
| 548 | 548 | * Remove the Hentry Class Every |
| 549 | 549 | */ |
| 550 | -function lsx_remove_hentry( $classes ) { |
|
| 551 | - if ( 'post' !== get_post_type() ) { |
|
| 552 | - $classes = array_diff( $classes, array( 'hentry' ) ); |
|
| 550 | +function lsx_remove_hentry($classes) { |
|
| 551 | + if ('post' !== get_post_type()) { |
|
| 552 | + $classes = array_diff($classes, array('hentry')); |
|
| 553 | 553 | } |
| 554 | 554 | return $classes; |
| 555 | 555 | } |
| 556 | -add_filter( 'post_class','lsx_remove_hentry' ); |
|
| 556 | +add_filter('post_class', 'lsx_remove_hentry'); |
|
| 557 | 557 | |
| 558 | 558 | /** |
| 559 | 559 | * Strip Excerpts. |
| 560 | 560 | * |
| 561 | 561 | */ |
| 562 | -function lsx_strip_excerpt( $content ) { |
|
| 563 | - if ( is_search() || is_archive() || ( is_blog_installed() && ! is_single() && ! is_page() ) ) { |
|
| 564 | - $content = strip_shortcodes( $content ); |
|
| 565 | - $content = str_replace( ']]>', ']]>', $content ); |
|
| 566 | - $content = strip_tags( $content ); |
|
| 562 | +function lsx_strip_excerpt($content) { |
|
| 563 | + if (is_search() || is_archive() || (is_blog_installed() && ! is_single() && ! is_page())) { |
|
| 564 | + $content = strip_shortcodes($content); |
|
| 565 | + $content = str_replace(']]>', ']]>', $content); |
|
| 566 | + $content = strip_tags($content); |
|
| 567 | 567 | } |
| 568 | 568 | return $content; |
| 569 | 569 | } |
| 570 | -add_filter( 'the_content', 'lsx_strip_excerpt' ); |
|
| 570 | +add_filter('the_content', 'lsx_strip_excerpt'); |
|
| 571 | 571 | |
| 572 | 572 | /** |
| 573 | 573 | * Disable Gutenberg for LSX Custom Post Tpes. |
| 574 | 574 | * |
| 575 | 575 | */ |
| 576 | -function lsx_disable_gutenberg_product_type( $is_enabled, $post_type ) { |
|
| 577 | - if ( 'testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type ) { |
|
| 576 | +function lsx_disable_gutenberg_product_type($is_enabled, $post_type) { |
|
| 577 | + if ('testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type) { |
|
| 578 | 578 | return false; |
| 579 | 579 | } |
| 580 | 580 | |
| 581 | 581 | return $is_enabled; |
| 582 | 582 | } |
| 583 | -add_filter( 'gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2 ); |
|
| 583 | +add_filter('gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2); |
|
| 584 | 584 | |
| 585 | 585 | /** |
| 586 | 586 | * Add the "Blog" link to the breadcrumbs |
| 587 | 587 | * @param $crumbs |
| 588 | 588 | * @return array |
| 589 | 589 | */ |
| 590 | -function lsx_breadcrumbs_blog_link( $crumbs ) { |
|
| 590 | +function lsx_breadcrumbs_blog_link($crumbs) { |
|
| 591 | 591 | |
| 592 | - $show_on_front = get_option( 'show_on_front' ); |
|
| 592 | + $show_on_front = get_option('show_on_front'); |
|
| 593 | 593 | |
| 594 | - if ( 'page' === $show_on_front && ( is_category() || is_tag() ) ) { |
|
| 594 | + if ('page' === $show_on_front && (is_category() || is_tag())) { |
|
| 595 | 595 | |
| 596 | - $blog_page = get_option( 'page_for_posts' ); |
|
| 597 | - if ( false !== $blog_page && '' !== $blog_page ) { |
|
| 596 | + $blog_page = get_option('page_for_posts'); |
|
| 597 | + if (false !== $blog_page && '' !== $blog_page) { |
|
| 598 | 598 | |
| 599 | 599 | $new_crumbs = array(); |
| 600 | 600 | $new_crumbs[0] = $crumbs[0]; |
| 601 | 601 | |
| 602 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
| 602 | + if (function_exists('woocommerce_breadcrumb')) { |
|
| 603 | 603 | $new_crumbs[1] = array( |
| 604 | - 0 => get_the_title( $blog_page ), |
|
| 605 | - 1 => get_permalink( $blog_page ), |
|
| 604 | + 0 => get_the_title($blog_page), |
|
| 605 | + 1 => get_permalink($blog_page), |
|
| 606 | 606 | ); |
| 607 | 607 | } else { |
| 608 | 608 | $new_crumbs[1] = array( |
| 609 | - 'text' => get_the_title( $blog_page ), |
|
| 610 | - 'url' => get_permalink( $blog_page ), |
|
| 609 | + 'text' => get_the_title($blog_page), |
|
| 610 | + 'url' => get_permalink($blog_page), |
|
| 611 | 611 | ); |
| 612 | 612 | } |
| 613 | 613 | $new_crumbs[2] = $crumbs[1]; |
@@ -617,5 +617,5 @@ discard block |
||
| 617 | 617 | } |
| 618 | 618 | return $crumbs; |
| 619 | 619 | } |
| 620 | -add_filter( 'wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1 ); |
|
| 621 | -add_filter( 'woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1 ); |
|
| 620 | +add_filter('wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1); |
|
| 621 | +add_filter('woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1); |
|
@@ -6,11 +6,11 @@ discard block |
||
| 6 | 6 | * @subpackage woocommerce |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | -if ( ! function_exists( 'lsx_wc_support' ) ) : |
|
| 13 | +if ( ! function_exists('lsx_wc_support')) : |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * WooCommerce support. |
@@ -19,17 +19,17 @@ discard block |
||
| 19 | 19 | * @subpackage woocommerce |
| 20 | 20 | */ |
| 21 | 21 | function lsx_wc_support() { |
| 22 | - add_theme_support( 'woocommerce' ); |
|
| 23 | - add_theme_support( 'wc-product-gallery-zoom' ); |
|
| 24 | - add_theme_support( 'wc-product-gallery-lightbox' ); |
|
| 25 | - add_theme_support( 'wc-product-gallery-slider' ); |
|
| 22 | + add_theme_support('woocommerce'); |
|
| 23 | + add_theme_support('wc-product-gallery-zoom'); |
|
| 24 | + add_theme_support('wc-product-gallery-lightbox'); |
|
| 25 | + add_theme_support('wc-product-gallery-slider'); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | - add_action( 'after_setup_theme', 'lsx_wc_support' ); |
|
| 28 | + add_action('after_setup_theme', 'lsx_wc_support'); |
|
| 29 | 29 | |
| 30 | 30 | endif; |
| 31 | 31 | |
| 32 | -if ( ! function_exists( 'lsx_wc_scripts_add_styles' ) ) : |
|
| 32 | +if ( ! function_exists('lsx_wc_scripts_add_styles')) : |
|
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | 35 | * WooCommerce enqueue styles. |
@@ -38,18 +38,18 @@ discard block |
||
| 38 | 38 | * @subpackage woocommerce |
| 39 | 39 | */ |
| 40 | 40 | function lsx_wc_scripts_add_styles() { |
| 41 | - wp_enqueue_style( 'woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array( 'lsx_main' ), LSX_VERSION ); |
|
| 42 | - wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' ); |
|
| 41 | + wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array('lsx_main'), LSX_VERSION); |
|
| 42 | + wp_style_add_data('woocommerce-lsx', 'rtl', 'replace'); |
|
| 43 | 43 | |
| 44 | 44 | // Remove WC Shipping Multiple Addresses specific script causing issues on checkout. |
| 45 | - wp_dequeue_script( 'wcms-country-select' ); |
|
| 45 | + wp_dequeue_script('wcms-country-select'); |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' ); |
|
| 48 | + add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles'); |
|
| 49 | 49 | |
| 50 | 50 | endif; |
| 51 | 51 | |
| 52 | -if ( ! function_exists( 'lsx_wc_form_field_args' ) ) : |
|
| 52 | +if ( ! function_exists('lsx_wc_form_field_args')) : |
|
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | 55 | * WooCommerce form fields. |
@@ -57,17 +57,17 @@ discard block |
||
| 57 | 57 | * @package lsx |
| 58 | 58 | * @subpackage woocommerce |
| 59 | 59 | */ |
| 60 | - function lsx_wc_form_field_args( $args, $key, $value ) { |
|
| 60 | + function lsx_wc_form_field_args($args, $key, $value) { |
|
| 61 | 61 | $args['input_class'][] = 'form-control'; |
| 62 | 62 | |
| 63 | 63 | return $args; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 ); |
|
| 66 | + add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3); |
|
| 67 | 67 | |
| 68 | 68 | endif; |
| 69 | 69 | |
| 70 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) : |
|
| 70 | +if ( ! function_exists('lsx_wc_theme_wrapper_start')) : |
|
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | 73 | * WooCommerce wrapper start. |
@@ -77,18 +77,18 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | function lsx_wc_theme_wrapper_start() { |
| 79 | 79 | lsx_content_wrap_before(); |
| 80 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
| 80 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
| 81 | 81 | lsx_content_before(); |
| 82 | 82 | echo '<main id="main" class="site-main" role="main">'; |
| 83 | 83 | lsx_content_top(); |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
| 87 | - add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' ); |
|
| 86 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
| 87 | + add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start'); |
|
| 88 | 88 | |
| 89 | 89 | endif; |
| 90 | 90 | |
| 91 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) : |
|
| 91 | +if ( ! function_exists('lsx_wc_theme_wrapper_end')) : |
|
| 92 | 92 | |
| 93 | 93 | /** |
| 94 | 94 | * WooCommerce wrapper end. |
@@ -104,12 +104,12 @@ discard block |
||
| 104 | 104 | lsx_content_wrap_after(); |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
| 108 | - add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' ); |
|
| 107 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
| 108 | + add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end'); |
|
| 109 | 109 | |
| 110 | 110 | endif; |
| 111 | 111 | |
| 112 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) : |
|
| 112 | +if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) : |
|
| 113 | 113 | |
| 114 | 114 | /** |
| 115 | 115 | * Disable LSX Banners plugin in some WC pages. |
@@ -117,21 +117,21 @@ discard block |
||
| 117 | 117 | * @package lsx |
| 118 | 118 | * @subpackage woocommerce |
| 119 | 119 | */ |
| 120 | - function lsx_wc_disable_lsx_banner_plugin( $disabled ) { |
|
| 120 | + function lsx_wc_disable_lsx_banner_plugin($disabled) { |
|
| 121 | 121 | global $post; |
| 122 | 122 | |
| 123 | - if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) { |
|
| 123 | + if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) { |
|
| 124 | 124 | $disabled = true; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | return $disabled; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' ); |
|
| 130 | + add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin'); |
|
| 131 | 131 | |
| 132 | 132 | endif; |
| 133 | 133 | |
| 134 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) : |
|
| 134 | +if ( ! function_exists('lsx_wc_disable_lsx_banner')) : |
|
| 135 | 135 | |
| 136 | 136 | /** |
| 137 | 137 | * Disable LSX Banners banner in some WC pages. |
@@ -139,41 +139,41 @@ discard block |
||
| 139 | 139 | * @package lsx |
| 140 | 140 | * @subpackage woocommerce |
| 141 | 141 | */ |
| 142 | - function lsx_wc_disable_lsx_banner( $disabled ) { |
|
| 143 | - if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) { |
|
| 142 | + function lsx_wc_disable_lsx_banner($disabled) { |
|
| 143 | + if (is_shop() || is_product_category() || is_product_tag() || is_product()) { |
|
| 144 | 144 | $disabled = true; |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | return $disabled; |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | - add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' ); |
|
| 150 | + add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner'); |
|
| 151 | 151 | |
| 152 | 152 | endif; |
| 153 | 153 | |
| 154 | -if ( ! function_exists( 'lsx_wc_categories_breadcrumb_filter' ) ) : |
|
| 154 | +if ( ! function_exists('lsx_wc_categories_breadcrumb_filter')) : |
|
| 155 | 155 | /** |
| 156 | 156 | * Improves the category and taxonomy breadcrumbs for woocommerce. |
| 157 | 157 | * |
| 158 | 158 | * @package lsx |
| 159 | 159 | * @subpackage woocommerce |
| 160 | 160 | */ |
| 161 | - function lsx_wc_categories_breadcrumb_filter( $crumbs ) { |
|
| 161 | + function lsx_wc_categories_breadcrumb_filter($crumbs) { |
|
| 162 | 162 | |
| 163 | - $shop_page_url = get_permalink( wc_get_page_id( 'shop' ) ); |
|
| 163 | + $shop_page_url = get_permalink(wc_get_page_id('shop')); |
|
| 164 | 164 | |
| 165 | - if ( is_product_category() || is_product_tag() ) { |
|
| 165 | + if (is_product_category() || is_product_tag()) { |
|
| 166 | 166 | $new_crumbs = array(); |
| 167 | 167 | $new_crumbs[0] = $crumbs[0]; |
| 168 | 168 | |
| 169 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
| 169 | + if (function_exists('woocommerce_breadcrumb')) { |
|
| 170 | 170 | $new_crumbs[1] = array( |
| 171 | - 0 => __( 'Shop', 'lsx' ), |
|
| 171 | + 0 => __('Shop', 'lsx'), |
|
| 172 | 172 | 1 => $shop_page_url, |
| 173 | 173 | ); |
| 174 | 174 | } else { |
| 175 | 175 | $new_crumbs[1] = array( |
| 176 | - 'text' => __( 'Shop', 'lsx' ), |
|
| 176 | + 'text' => __('Shop', 'lsx'), |
|
| 177 | 177 | 'url' => $shop_page_url, |
| 178 | 178 | ); |
| 179 | 179 | } |
@@ -184,12 +184,12 @@ discard block |
||
| 184 | 184 | } |
| 185 | 185 | return $crumbs; |
| 186 | 186 | } |
| 187 | - add_filter( 'wpseo_breadcrumb_links', 'lsx_wc_categories_breadcrumb_filter', 30, 1 ); |
|
| 188 | - add_filter( 'woocommerce_get_breadcrumb', 'lsx_wc_categories_breadcrumb_filter', 30, 1 ); |
|
| 187 | + add_filter('wpseo_breadcrumb_links', 'lsx_wc_categories_breadcrumb_filter', 30, 1); |
|
| 188 | + add_filter('woocommerce_get_breadcrumb', 'lsx_wc_categories_breadcrumb_filter', 30, 1); |
|
| 189 | 189 | |
| 190 | 190 | endif; |
| 191 | 191 | |
| 192 | -if ( ! function_exists( 'lsx_wc_add_cart' ) ) : |
|
| 192 | +if ( ! function_exists('lsx_wc_add_cart')) : |
|
| 193 | 193 | |
| 194 | 194 | /** |
| 195 | 195 | * Adds WC cart to the header. |
@@ -197,34 +197,34 @@ discard block |
||
| 197 | 197 | * @package lsx |
| 198 | 198 | * @subpackage template-tags |
| 199 | 199 | */ |
| 200 | - function lsx_wc_add_cart( $items, $args ) { |
|
| 201 | - $cart_menu_item_position = apply_filters( 'lsx_wc_cart_menu_item_position', 'primary' ); |
|
| 200 | + function lsx_wc_add_cart($items, $args) { |
|
| 201 | + $cart_menu_item_position = apply_filters('lsx_wc_cart_menu_item_position', 'primary'); |
|
| 202 | 202 | |
| 203 | 203 | $cart_logged_out_position = $cart_menu_item_position . '_logged_out'; |
| 204 | 204 | |
| 205 | - if ( $cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location ) { |
|
| 206 | - $customizer_option = get_theme_mod( 'lsx_header_wc_cart', false ); |
|
| 205 | + if ($cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location) { |
|
| 206 | + $customizer_option = get_theme_mod('lsx_header_wc_cart', false); |
|
| 207 | 207 | |
| 208 | - if ( ! empty( $customizer_option ) ) { |
|
| 208 | + if ( ! empty($customizer_option)) { |
|
| 209 | 209 | ob_start(); |
| 210 | - the_widget( 'WC_Widget_Cart', 'title=' ); |
|
| 210 | + the_widget('WC_Widget_Cart', 'title='); |
|
| 211 | 211 | $widget = ob_get_clean(); |
| 212 | 212 | |
| 213 | - if ( is_cart() ) { |
|
| 213 | + if (is_cart()) { |
|
| 214 | 214 | $class = 'current-menu-item'; |
| 215 | 215 | } else { |
| 216 | 216 | $class = ''; |
| 217 | 217 | } |
| 218 | 218 | |
| 219 | 219 | $item_class = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class; |
| 220 | - $item_class = apply_filters( 'lsx_wc_cart_menu_item_class', $item_class ); |
|
| 220 | + $item_class = apply_filters('lsx_wc_cart_menu_item_class', $item_class); |
|
| 221 | 221 | |
| 222 | 222 | $item = '<li class="' . $item_class . '">' . |
| 223 | - '<a title="' . esc_attr__( 'View your shopping cart', 'lsx' ) . '" href="' . esc_url( wc_get_cart_url() ) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' . |
|
| 224 | - '<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span>' . |
|
| 223 | + '<a title="' . esc_attr__('View your shopping cart', 'lsx') . '" href="' . esc_url(wc_get_cart_url()) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' . |
|
| 224 | + '<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span>' . |
|
| 225 | 225 | /* Translators: %s: items quantity */ |
| 226 | - '<span class="lsx-wc-cart-count">' . wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) ) . '</span>' . |
|
| 227 | - ( ! empty( WC()->cart->get_cart_contents_count() ) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data( WC()->cart->get_cart_contents_count() ) . '</span>' : '' ) . |
|
| 226 | + '<span class="lsx-wc-cart-count">' . wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())) . '</span>' . |
|
| 227 | + ( ! empty(WC()->cart->get_cart_contents_count()) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data(WC()->cart->get_cart_contents_count()) . '</span>' : '') . |
|
| 228 | 228 | '</a>' . |
| 229 | 229 | '<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' . |
| 230 | 230 | '<li>' . |
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | '</ul>' . |
| 234 | 234 | '</li>'; |
| 235 | 235 | |
| 236 | - if ( 'top-menu' === $args->theme_location ) { |
|
| 236 | + if ('top-menu' === $args->theme_location) { |
|
| 237 | 237 | $items = $item . $items; |
| 238 | 238 | } else { |
| 239 | 239 | $items = $items . $item; |
@@ -244,11 +244,11 @@ discard block |
||
| 244 | 244 | return $items; |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | - add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 ); |
|
| 247 | + add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2); |
|
| 248 | 248 | |
| 249 | 249 | endif; |
| 250 | 250 | |
| 251 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) : |
|
| 251 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) : |
|
| 252 | 252 | |
| 253 | 253 | /** |
| 254 | 254 | * Change WC products widget wrapper (before). |
@@ -256,16 +256,16 @@ discard block |
||
| 256 | 256 | * @package lsx |
| 257 | 257 | * @subpackage woocommerce |
| 258 | 258 | */ |
| 259 | - function lsx_wc_products_widget_wrapper_before( $html ) { |
|
| 259 | + function lsx_wc_products_widget_wrapper_before($html) { |
|
| 260 | 260 | $html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">'; |
| 261 | 261 | return $html; |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 ); |
|
| 264 | + add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15); |
|
| 265 | 265 | |
| 266 | 266 | endif; |
| 267 | 267 | |
| 268 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) : |
|
| 268 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) : |
|
| 269 | 269 | |
| 270 | 270 | /** |
| 271 | 271 | * Change WC products widget wrapper (after). |
@@ -273,16 +273,16 @@ discard block |
||
| 273 | 273 | * @package lsx |
| 274 | 274 | * @subpackage woocommerce |
| 275 | 275 | */ |
| 276 | - function lsx_wc_products_widget_wrapper_after( $html ) { |
|
| 276 | + function lsx_wc_products_widget_wrapper_after($html) { |
|
| 277 | 277 | $html = '</div>'; |
| 278 | 278 | return $html; |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | - add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 ); |
|
| 281 | + add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15); |
|
| 282 | 282 | |
| 283 | 283 | endif; |
| 284 | 284 | |
| 285 | -if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) : |
|
| 285 | +if ( ! function_exists('lsx_wc_reviews_widget_override')) : |
|
| 286 | 286 | |
| 287 | 287 | /** |
| 288 | 288 | * Override WC ewviews widget. |
@@ -291,18 +291,18 @@ discard block |
||
| 291 | 291 | * @subpackage woocommerce |
| 292 | 292 | */ |
| 293 | 293 | function lsx_wc_reviews_widget_override() { |
| 294 | - if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) { |
|
| 295 | - unregister_widget( 'WC_Widget_Recent_Reviews' ); |
|
| 294 | + if (class_exists('WC_Widget_Recent_Reviews')) { |
|
| 295 | + unregister_widget('WC_Widget_Recent_Reviews'); |
|
| 296 | 296 | require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php'; |
| 297 | - register_widget( 'LSX_WC_Widget_Recent_Reviews' ); |
|
| 297 | + register_widget('LSX_WC_Widget_Recent_Reviews'); |
|
| 298 | 298 | } |
| 299 | 299 | } |
| 300 | 300 | |
| 301 | - add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 ); |
|
| 301 | + add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15); |
|
| 302 | 302 | |
| 303 | 303 | endif; |
| 304 | 304 | |
| 305 | -if ( ! function_exists( 'lsx_wc_change_price_html' ) ) : |
|
| 305 | +if ( ! function_exists('lsx_wc_change_price_html')) : |
|
| 306 | 306 | |
| 307 | 307 | /** |
| 308 | 308 | * Change WC ZERO price to "free". |
@@ -314,28 +314,28 @@ discard block |
||
| 314 | 314 | * @param $product WC_Product |
| 315 | 315 | * @return string |
| 316 | 316 | */ |
| 317 | - function lsx_wc_change_price_html( $price, $product ) { |
|
| 318 | - if ( empty( $product->get_price() ) ) { |
|
| 319 | - if ( $product->is_on_sale() && $product->get_regular_price() ) { |
|
| 320 | - $regular_price = wc_get_price_to_display( $product, array( |
|
| 317 | + function lsx_wc_change_price_html($price, $product) { |
|
| 318 | + if (empty($product->get_price())) { |
|
| 319 | + if ($product->is_on_sale() && $product->get_regular_price()) { |
|
| 320 | + $regular_price = wc_get_price_to_display($product, array( |
|
| 321 | 321 | 'qty' => 1, |
| 322 | 322 | 'price' => $product->get_regular_price(), |
| 323 | - ) ); |
|
| 323 | + )); |
|
| 324 | 324 | |
| 325 | - $price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) ); |
|
| 325 | + $price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx')); |
|
| 326 | 326 | } else { |
| 327 | - $price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>'; |
|
| 327 | + $price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>'; |
|
| 328 | 328 | } |
| 329 | 329 | } |
| 330 | 330 | |
| 331 | 331 | return $price; |
| 332 | 332 | } |
| 333 | 333 | |
| 334 | - add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 ); |
|
| 334 | + add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2); |
|
| 335 | 335 | |
| 336 | 336 | endif; |
| 337 | 337 | |
| 338 | -if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) : |
|
| 338 | +if ( ! function_exists('lsx_wc_cart_link_fragment')) : |
|
| 339 | 339 | |
| 340 | 340 | /** |
| 341 | 341 | * Cart Fragments. |
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | * @package lsx |
| 345 | 345 | * @subpackage woocommerce |
| 346 | 346 | */ |
| 347 | - function lsx_wc_cart_link_fragment( $fragments ) { |
|
| 347 | + function lsx_wc_cart_link_fragment($fragments) { |
|
| 348 | 348 | global $woocommerce; |
| 349 | 349 | |
| 350 | 350 | ob_start(); |
@@ -355,8 +355,8 @@ discard block |
||
| 355 | 355 | lsx_wc_items_counter(); |
| 356 | 356 | $items_counter = ob_get_clean(); |
| 357 | 357 | |
| 358 | - if ( ! empty( $items_counter ) ) { |
|
| 359 | - $fragments['div.widget_shopping_cart_content'] = preg_replace( '/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content'] ); |
|
| 358 | + if ( ! empty($items_counter)) { |
|
| 359 | + $fragments['div.widget_shopping_cart_content'] = preg_replace('/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content']); |
|
| 360 | 360 | } |
| 361 | 361 | |
| 362 | 362 | return $fragments; |
@@ -364,7 +364,7 @@ discard block |
||
| 364 | 364 | |
| 365 | 365 | endif; |
| 366 | 366 | |
| 367 | -if ( ! function_exists( 'lsx_wc_cart_link' ) ) : |
|
| 367 | +if ( ! function_exists('lsx_wc_cart_link')) : |
|
| 368 | 368 | |
| 369 | 369 | /** |
| 370 | 370 | * Cart Link. |
@@ -375,14 +375,14 @@ discard block |
||
| 375 | 375 | */ |
| 376 | 376 | function lsx_wc_cart_link() { |
| 377 | 377 | ?> |
| 378 | - <a title="<?php esc_attr_e( 'View your shopping cart', 'lsx' ); ?>" href="<?php echo esc_url( wc_get_cart_url() ); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true"> |
|
| 379 | - <span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> |
|
| 378 | + <a title="<?php esc_attr_e('View your shopping cart', 'lsx'); ?>" href="<?php echo esc_url(wc_get_cart_url()); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true"> |
|
| 379 | + <span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span> |
|
| 380 | 380 | |
| 381 | 381 | <?php /* Translators: %s: items quantity */ ?> |
| 382 | - <span class="lsx-wc-cart-count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) );?></span> |
|
| 382 | + <span class="lsx-wc-cart-count"><?php echo wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())); ?></span> |
|
| 383 | 383 | |
| 384 | - <?php if ( ! empty( WC()->cart->get_cart_contents_count() ) ) : ?> |
|
| 385 | - <span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() );?></span> |
|
| 384 | + <?php if ( ! empty(WC()->cart->get_cart_contents_count())) : ?> |
|
| 385 | + <span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span> |
|
| 386 | 386 | <?php endif; ?> |
| 387 | 387 | </a> |
| 388 | 388 | <?php |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | |
| 391 | 391 | endif; |
| 392 | 392 | |
| 393 | -if ( ! function_exists( 'lsx_wc_items_counter' ) ) : |
|
| 393 | +if ( ! function_exists('lsx_wc_items_counter')) : |
|
| 394 | 394 | |
| 395 | 395 | /** |
| 396 | 396 | * Add car item hidden items counter. |
@@ -402,21 +402,21 @@ discard block |
||
| 402 | 402 | $count = (int) WC()->cart->get_cart_contents_count(); |
| 403 | 403 | $items_counter = ''; |
| 404 | 404 | |
| 405 | - if ( ! empty( $count ) ) { |
|
| 405 | + if ( ! empty($count)) { |
|
| 406 | 406 | $count -= 3; |
| 407 | 407 | |
| 408 | - if ( 1 === $count ) { |
|
| 409 | - $items_counter = esc_html__( '1 other item in cart', 'lsx' ); |
|
| 410 | - } elseif ( $count > 1 ) { |
|
| 408 | + if (1 === $count) { |
|
| 409 | + $items_counter = esc_html__('1 other item in cart', 'lsx'); |
|
| 410 | + } elseif ($count > 1) { |
|
| 411 | 411 | /* Translators: %s: items counter */ |
| 412 | - $items_counter = sprintf( esc_html__( '%s other items in cart', 'lsx' ), $count ); |
|
| 412 | + $items_counter = sprintf(esc_html__('%s other items in cart', 'lsx'), $count); |
|
| 413 | 413 | } |
| 414 | 414 | } |
| 415 | - $cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
| 416 | - if ( ! empty( $items_counter ) ) : |
|
| 415 | + $cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
| 416 | + if ( ! empty($items_counter)) : |
|
| 417 | 417 | ?> |
| 418 | 418 | <li class="woocommerce-mini-cart-item mini_cart_item" style="display: block;"> |
| 419 | - <a href="<?php echo esc_url( $cart_url ); ?>"><?php echo esc_html( $items_counter ); ?></a> |
|
| 419 | + <a href="<?php echo esc_url($cart_url); ?>"><?php echo esc_html($items_counter); ?></a> |
|
| 420 | 420 | </li> |
| 421 | 421 | <?php |
| 422 | 422 | endif; |
@@ -424,7 +424,7 @@ discard block |
||
| 424 | 424 | |
| 425 | 425 | endif; |
| 426 | 426 | |
| 427 | -if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) : |
|
| 427 | +if ( ! function_exists('lsx_wc_loop_shop_per_page')) : |
|
| 428 | 428 | |
| 429 | 429 | /** |
| 430 | 430 | * Changes the number of products to display on shop. |
@@ -432,16 +432,16 @@ discard block |
||
| 432 | 432 | * @package lsx |
| 433 | 433 | * @subpackage woocommerce |
| 434 | 434 | */ |
| 435 | - function lsx_wc_loop_shop_per_page( $items ) { |
|
| 435 | + function lsx_wc_loop_shop_per_page($items) { |
|
| 436 | 436 | $items = 20; |
| 437 | 437 | return $items; |
| 438 | 438 | } |
| 439 | 439 | |
| 440 | - add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 ); |
|
| 440 | + add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20); |
|
| 441 | 441 | |
| 442 | 442 | endif; |
| 443 | 443 | |
| 444 | -if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) : |
|
| 444 | +if ( ! function_exists('lsx_wc_add_to_cart_message_html')) : |
|
| 445 | 445 | |
| 446 | 446 | /** |
| 447 | 447 | * Changes the "added to cart" message HTML. |
@@ -449,39 +449,39 @@ discard block |
||
| 449 | 449 | * @package lsx |
| 450 | 450 | * @subpackage woocommerce |
| 451 | 451 | */ |
| 452 | - function lsx_wc_add_to_cart_message_html( $message, $products ) { |
|
| 452 | + function lsx_wc_add_to_cart_message_html($message, $products) { |
|
| 453 | 453 | $message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>'; |
| 454 | 454 | return $message; |
| 455 | 455 | } |
| 456 | 456 | |
| 457 | - add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 ); |
|
| 457 | + add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2); |
|
| 458 | 458 | |
| 459 | 459 | endif; |
| 460 | 460 | |
| 461 | -if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) { |
|
| 462 | - add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
| 461 | +if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) { |
|
| 462 | + add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
| 463 | 463 | } else { |
| 464 | - add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
| 464 | + add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
| 465 | 465 | } |
| 466 | 466 | |
| 467 | -remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); |
|
| 467 | +remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10); |
|
| 468 | 468 | |
| 469 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
| 470 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
| 471 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 472 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 ); |
|
| 473 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
| 469 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
| 470 | +add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
| 471 | +add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20); |
|
| 472 | +add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30); |
|
| 473 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
| 474 | 474 | |
| 475 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 476 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
| 475 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
| 476 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
| 477 | 477 | |
| 478 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
| 479 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
| 480 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 481 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 ); |
|
| 482 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
| 478 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
| 479 | +add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
| 480 | +add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
| 481 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30); |
|
| 482 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
| 483 | 483 | |
| 484 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) : |
|
| 484 | +if ( ! function_exists('lsx_wc_sorting_wrapper')) : |
|
| 485 | 485 | |
| 486 | 486 | /** |
| 487 | 487 | * Sorting wrapper. |
@@ -495,7 +495,7 @@ discard block |
||
| 495 | 495 | |
| 496 | 496 | endif; |
| 497 | 497 | |
| 498 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) : |
|
| 498 | +if ( ! function_exists('lsx_wc_sorting_wrapper_close')) : |
|
| 499 | 499 | |
| 500 | 500 | /** |
| 501 | 501 | * Sorting wrapper close. |
@@ -509,7 +509,7 @@ discard block |
||
| 509 | 509 | |
| 510 | 510 | endif; |
| 511 | 511 | |
| 512 | -if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) : |
|
| 512 | +if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) : |
|
| 513 | 513 | |
| 514 | 514 | /** |
| 515 | 515 | * Product columns wrapper close. |
@@ -523,7 +523,7 @@ discard block |
||
| 523 | 523 | |
| 524 | 524 | endif; |
| 525 | 525 | |
| 526 | -if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) : |
|
| 526 | +if ( ! function_exists('lsx_wc_woocommerce_pagination')) : |
|
| 527 | 527 | |
| 528 | 528 | /** |
| 529 | 529 | * LSX WooCommerce Pagination |
@@ -535,14 +535,14 @@ discard block |
||
| 535 | 535 | * @subpackage woocommerce |
| 536 | 536 | */ |
| 537 | 537 | function lsx_wc_woocommerce_pagination() { |
| 538 | - if ( woocommerce_products_will_display() ) { |
|
| 538 | + if (woocommerce_products_will_display()) { |
|
| 539 | 539 | woocommerce_pagination(); |
| 540 | 540 | } |
| 541 | 541 | } |
| 542 | 542 | |
| 543 | 543 | endif; |
| 544 | 544 | |
| 545 | -if ( ! function_exists( 'lsx_customizer_wc_controls' ) ) : |
|
| 545 | +if ( ! function_exists('lsx_customizer_wc_controls')) : |
|
| 546 | 546 | |
| 547 | 547 | /** |
| 548 | 548 | * Returns an array of the core panel. |
@@ -552,10 +552,10 @@ discard block |
||
| 552 | 552 | * |
| 553 | 553 | * @return $lsx_controls array() |
| 554 | 554 | */ |
| 555 | - function lsx_customizer_wc_controls( $lsx_controls ) { |
|
| 555 | + function lsx_customizer_wc_controls($lsx_controls) { |
|
| 556 | 556 | $lsx_controls['panels']['lsx-wc'] = array( |
| 557 | - 'title' => esc_html__( 'WooCommerce', 'lsx' ), |
|
| 558 | - 'description' => esc_html__( 'Change the WooCommerce settings.', 'lsx' ), |
|
| 557 | + 'title' => esc_html__('WooCommerce', 'lsx'), |
|
| 558 | + 'description' => esc_html__('Change the WooCommerce settings.', 'lsx'), |
|
| 559 | 559 | 'priority' => 23, |
| 560 | 560 | ); |
| 561 | 561 | |
@@ -564,8 +564,8 @@ discard block |
||
| 564 | 564 | */ |
| 565 | 565 | |
| 566 | 566 | $lsx_controls['sections']['lsx-wc-global'] = array( |
| 567 | - 'title' => esc_html__( 'Global', 'lsx' ), |
|
| 568 | - 'description' => esc_html__( 'Change the WooCommerce global settings.', 'lsx' ), |
|
| 567 | + 'title' => esc_html__('Global', 'lsx'), |
|
| 568 | + 'description' => esc_html__('Change the WooCommerce global settings.', 'lsx'), |
|
| 569 | 569 | 'panel' => 'lsx-wc', |
| 570 | 570 | 'priority' => 1, |
| 571 | 571 | ); |
@@ -576,8 +576,8 @@ discard block |
||
| 576 | 576 | ); |
| 577 | 577 | |
| 578 | 578 | $lsx_controls['fields']['lsx_wc_mobile_footer_bar_status'] = array( |
| 579 | - 'label' => esc_html__( 'Footer Bar', 'lsx' ), |
|
| 580 | - 'description' => esc_html__( 'Enable the mobile footer bar.', 'lsx' ), |
|
| 579 | + 'label' => esc_html__('Footer Bar', 'lsx'), |
|
| 580 | + 'description' => esc_html__('Enable the mobile footer bar.', 'lsx'), |
|
| 581 | 581 | 'section' => 'lsx-wc-global', |
| 582 | 582 | 'type' => 'checkbox', |
| 583 | 583 | 'priority' => 1, |
@@ -588,8 +588,8 @@ discard block |
||
| 588 | 588 | */ |
| 589 | 589 | |
| 590 | 590 | $lsx_controls['sections']['lsx-wc-cart'] = array( |
| 591 | - 'title' => esc_html__( 'Cart', 'lsx' ), |
|
| 592 | - 'description' => esc_html__( 'Change the WooCommerce cart settings.', 'lsx' ), |
|
| 591 | + 'title' => esc_html__('Cart', 'lsx'), |
|
| 592 | + 'description' => esc_html__('Change the WooCommerce cart settings.', 'lsx'), |
|
| 593 | 593 | 'panel' => 'lsx-wc', |
| 594 | 594 | 'priority' => 2, |
| 595 | 595 | ); |
@@ -600,8 +600,8 @@ discard block |
||
| 600 | 600 | ); |
| 601 | 601 | |
| 602 | 602 | $lsx_controls['fields']['lsx_header_wc_cart'] = array( |
| 603 | - 'label' => esc_html__( 'Menu Item', 'lsx' ), |
|
| 604 | - 'description' => esc_html__( 'Enable the cart menu item.', 'lsx' ), |
|
| 603 | + 'label' => esc_html__('Menu Item', 'lsx'), |
|
| 604 | + 'description' => esc_html__('Enable the cart menu item.', 'lsx'), |
|
| 605 | 605 | 'section' => 'lsx-wc-cart', |
| 606 | 606 | 'type' => 'checkbox', |
| 607 | 607 | 'priority' => 1, |
@@ -610,11 +610,11 @@ discard block |
||
| 610 | 610 | return $lsx_controls; |
| 611 | 611 | } |
| 612 | 612 | |
| 613 | - add_filter( 'lsx_customizer_controls', 'lsx_customizer_wc_controls' ); |
|
| 613 | + add_filter('lsx_customizer_controls', 'lsx_customizer_wc_controls'); |
|
| 614 | 614 | |
| 615 | 615 | endif; |
| 616 | 616 | |
| 617 | -if ( ! function_exists( 'lsx_wc_global_header_title' ) ) : |
|
| 617 | +if ( ! function_exists('lsx_wc_global_header_title')) : |
|
| 618 | 618 | |
| 619 | 619 | /** |
| 620 | 620 | * Move the shop title into the global header |
@@ -622,21 +622,21 @@ discard block |
||
| 622 | 622 | * @package lsx |
| 623 | 623 | * @subpackage the-events-calendar |
| 624 | 624 | */ |
| 625 | - function lsx_wc_global_header_title( $title ) { |
|
| 625 | + function lsx_wc_global_header_title($title) { |
|
| 626 | 626 | |
| 627 | - if ( is_woocommerce() && is_shop() ) { |
|
| 627 | + if (is_woocommerce() && is_shop()) { |
|
| 628 | 628 | |
| 629 | - $title = __( 'Shop', 'lsx' ); |
|
| 629 | + $title = __('Shop', 'lsx'); |
|
| 630 | 630 | } |
| 631 | 631 | |
| 632 | 632 | return $title; |
| 633 | 633 | } |
| 634 | - add_filter( 'lsx_global_header_title', 'lsx_wc_global_header_title', 200, 1 ); |
|
| 634 | + add_filter('lsx_global_header_title', 'lsx_wc_global_header_title', 200, 1); |
|
| 635 | 635 | |
| 636 | 636 | endif; |
| 637 | 637 | |
| 638 | 638 | |
| 639 | -if ( ! function_exists( 'lsx_wc_footer_bar' ) ) : |
|
| 639 | +if ( ! function_exists('lsx_wc_footer_bar')) : |
|
| 640 | 640 | |
| 641 | 641 | /** |
| 642 | 642 | * Display WC footer bar. |
@@ -645,47 +645,47 @@ discard block |
||
| 645 | 645 | * @subpackage woocommerce |
| 646 | 646 | */ |
| 647 | 647 | function lsx_wc_footer_bar() { |
| 648 | - $cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
| 649 | - if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) : |
|
| 648 | + $cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
| 649 | + if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) : |
|
| 650 | 650 | ?> |
| 651 | 651 | <div class="lsx-wc-footer-bar"> |
| 652 | - <form role="search" method="get" action="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-form"> |
|
| 652 | + <form role="search" method="get" action="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-form"> |
|
| 653 | 653 | <fieldset> |
| 654 | - <legend class="screen-reader-text"><?php esc_html_e( 'Search products', 'lsx' ); ?></legend> |
|
| 655 | - <input type="search" name="s" placeholder="<?php esc_attr_e( 'Search products...', 'lsx' ); ?>" class="form-control"> |
|
| 654 | + <legend class="screen-reader-text"><?php esc_html_e('Search products', 'lsx'); ?></legend> |
|
| 655 | + <input type="search" name="s" placeholder="<?php esc_attr_e('Search products...', 'lsx'); ?>" class="form-control"> |
|
| 656 | 656 | </fieldset> |
| 657 | 657 | </form> |
| 658 | 658 | |
| 659 | 659 | <ul class="lsx-wc-footer-bar-items"> |
| 660 | 660 | <li class="lsx-wc-footer-bar-item"> |
| 661 | - <a href="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-link"> |
|
| 661 | + <a href="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-link"> |
|
| 662 | 662 | <i class="fa fa-home" aria-hidden="true"></i> |
| 663 | - <span><?php esc_html_e( 'Home', 'lsx' ); ?></span> |
|
| 663 | + <span><?php esc_html_e('Home', 'lsx'); ?></span> |
|
| 664 | 664 | </a> |
| 665 | 665 | </li> |
| 666 | 666 | |
| 667 | 667 | <li class="lsx-wc-footer-bar-item"> |
| 668 | - <a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>" class="lsx-wc-footer-bar-link"> |
|
| 668 | + <a href="<?php echo esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))); ?>" class="lsx-wc-footer-bar-link"> |
|
| 669 | 669 | <i class="fa fa-user" aria-hidden="true"></i> |
| 670 | - <span><?php esc_html_e( 'Account', 'lsx' ); ?></span> |
|
| 670 | + <span><?php esc_html_e('Account', 'lsx'); ?></span> |
|
| 671 | 671 | </a> |
| 672 | 672 | </li> |
| 673 | 673 | |
| 674 | 674 | <li class="lsx-wc-footer-bar-item"> |
| 675 | 675 | <a href="#" class="lsx-wc-footer-bar-link lsx-wc-footer-bar-link-toogle"> |
| 676 | 676 | <i class="fa fa-search" aria-hidden="true"></i> |
| 677 | - <span><?php esc_html_e( 'Search', 'lsx' ); ?></span> |
|
| 677 | + <span><?php esc_html_e('Search', 'lsx'); ?></span> |
|
| 678 | 678 | </a> |
| 679 | 679 | </li> |
| 680 | 680 | |
| 681 | 681 | <li class="lsx-wc-footer-bar-item"> |
| 682 | - <a href="<?php echo esc_url( $cart_url ); ?>" class="lsx-wc-footer-bar-link"> |
|
| 682 | + <a href="<?php echo esc_url($cart_url); ?>" class="lsx-wc-footer-bar-link"> |
|
| 683 | 683 | <i class="fa fa-shopping-basket" aria-hidden="true"></i> |
| 684 | 684 | <?php $count = WC()->cart->get_cart_contents_count(); ?> |
| 685 | - <?php if ( ! empty( $count ) ) : ?> |
|
| 686 | - <span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data( $count ); ?></span> |
|
| 685 | + <?php if ( ! empty($count)) : ?> |
|
| 686 | + <span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data($count); ?></span> |
|
| 687 | 687 | <?php endif; ?> |
| 688 | - <span><?php esc_html_e( 'Cart', 'lsx' ); ?></span> |
|
| 688 | + <span><?php esc_html_e('Cart', 'lsx'); ?></span> |
|
| 689 | 689 | </a> |
| 690 | 690 | </li> |
| 691 | 691 | </ul> |
@@ -694,11 +694,11 @@ discard block |
||
| 694 | 694 | endif; |
| 695 | 695 | } |
| 696 | 696 | |
| 697 | - add_action( 'lsx_body_bottom', 'lsx_wc_footer_bar', 15 ); |
|
| 697 | + add_action('lsx_body_bottom', 'lsx_wc_footer_bar', 15); |
|
| 698 | 698 | |
| 699 | 699 | endif; |
| 700 | 700 | |
| 701 | -if ( ! function_exists( 'lsx_wc_body_class' ) ) : |
|
| 701 | +if ( ! function_exists('lsx_wc_body_class')) : |
|
| 702 | 702 | |
| 703 | 703 | /** |
| 704 | 704 | * Changes body class. |
@@ -706,25 +706,25 @@ discard block |
||
| 706 | 706 | * @package lsx |
| 707 | 707 | * @subpackage woocommerce |
| 708 | 708 | */ |
| 709 | - function lsx_wc_body_class( $classes ) { |
|
| 709 | + function lsx_wc_body_class($classes) { |
|
| 710 | 710 | global $post; |
| 711 | 711 | |
| 712 | - if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) { |
|
| 712 | + if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) { |
|
| 713 | 713 | $classes[] = 'woocommerce-page woocommerce-wishlist'; |
| 714 | 714 | } |
| 715 | 715 | |
| 716 | - if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) { |
|
| 716 | + if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) { |
|
| 717 | 717 | $classes[] = 'lsx-wc-has-footer-bar'; |
| 718 | 718 | } |
| 719 | 719 | |
| 720 | 720 | return $classes; |
| 721 | 721 | } |
| 722 | 722 | |
| 723 | - add_filter( 'body_class', 'lsx_wc_body_class', 2999 ); |
|
| 723 | + add_filter('body_class', 'lsx_wc_body_class', 2999); |
|
| 724 | 724 | |
| 725 | 725 | endif; |
| 726 | 726 | |
| 727 | -if ( ! function_exists( 'lsx_wc_downloadable_products' ) ) : |
|
| 727 | +if ( ! function_exists('lsx_wc_downloadable_products')) : |
|
| 728 | 728 | |
| 729 | 729 | /** |
| 730 | 730 | * Changes downloads "download" button text. |
@@ -732,19 +732,19 @@ discard block |
||
| 732 | 732 | * @package lsx |
| 733 | 733 | * @subpackage woocommerce |
| 734 | 734 | */ |
| 735 | - function lsx_wc_downloadable_products( $downloads ) { |
|
| 736 | - foreach ( $downloads as $i => $download ) { |
|
| 737 | - $downloads[ $i ]['download_name'] = esc_html__( 'Download', 'lsx' ); |
|
| 735 | + function lsx_wc_downloadable_products($downloads) { |
|
| 736 | + foreach ($downloads as $i => $download) { |
|
| 737 | + $downloads[$i]['download_name'] = esc_html__('Download', 'lsx'); |
|
| 738 | 738 | } |
| 739 | 739 | |
| 740 | 740 | return $downloads; |
| 741 | 741 | } |
| 742 | 742 | |
| 743 | - add_filter( 'woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999 ); |
|
| 743 | + add_filter('woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999); |
|
| 744 | 744 | |
| 745 | 745 | endif; |
| 746 | 746 | |
| 747 | -if ( ! function_exists( 'lsx_wc_move_bundle_products' ) ) : |
|
| 747 | +if ( ! function_exists('lsx_wc_move_bundle_products')) : |
|
| 748 | 748 | |
| 749 | 749 | /** |
| 750 | 750 | * WooCommerce - Move the bundle products to a tab. |
@@ -752,46 +752,46 @@ discard block |
||
| 752 | 752 | * @package lsx |
| 753 | 753 | * @subpackage woocommerce |
| 754 | 754 | */ |
| 755 | - function lsx_wc_move_bundle_products( $tabs ) { |
|
| 755 | + function lsx_wc_move_bundle_products($tabs) { |
|
| 756 | 756 | global $product, $post; |
| 757 | 757 | |
| 758 | - if ( method_exists( $product , 'get_bundled_items' ) ) { |
|
| 758 | + if (method_exists($product, 'get_bundled_items')) { |
|
| 759 | 759 | $bundled_items = $product->get_bundled_items(); |
| 760 | 760 | |
| 761 | - if ( ! empty( $bundled_items ) ) { |
|
| 761 | + if ( ! empty($bundled_items)) { |
|
| 762 | 762 | $tabs['bundled_products'] = array( |
| 763 | - 'title' => __( 'Included Products', 'lsx' ), |
|
| 763 | + 'title' => __('Included Products', 'lsx'), |
|
| 764 | 764 | 'priority' => 10, |
| 765 | 765 | 'callback' => 'lsx_wc_bundle_products', |
| 766 | 766 | ); |
| 767 | 767 | } |
| 768 | 768 | } |
| 769 | 769 | |
| 770 | - if ( isset( $tabs['description'] ) ) { |
|
| 770 | + if (isset($tabs['description'])) { |
|
| 771 | 771 | $tabs['description']['priority'] = 5; |
| 772 | 772 | } |
| 773 | 773 | |
| 774 | - if ( isset( $tabs['reviews'] ) ) { |
|
| 774 | + if (isset($tabs['reviews'])) { |
|
| 775 | 775 | $tabs['reviews']['priority'] = 15; |
| 776 | 776 | } |
| 777 | 777 | |
| 778 | - if ( isset( $tabs['product_enquiry'] ) ) { |
|
| 778 | + if (isset($tabs['product_enquiry'])) { |
|
| 779 | 779 | $tabs['product_enquiry']['priority'] = 20; |
| 780 | 780 | } |
| 781 | 781 | |
| 782 | 782 | return $tabs; |
| 783 | 783 | } |
| 784 | 784 | |
| 785 | - add_action( 'woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50 ); |
|
| 785 | + add_action('woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50); |
|
| 786 | 786 | |
| 787 | 787 | endif; |
| 788 | 788 | |
| 789 | -if ( ! function_exists( 'lsx_wc_bundle_products' ) ) : |
|
| 789 | +if ( ! function_exists('lsx_wc_bundle_products')) : |
|
| 790 | 790 | |
| 791 | 791 | function lsx_wc_bundle_products() { |
| 792 | 792 | global $product, $post; |
| 793 | 793 | |
| 794 | - if ( method_exists( $product , 'get_bundled_items' ) ) { |
|
| 794 | + if (method_exists($product, 'get_bundled_items')) { |
|
| 795 | 795 | $bundled_items = $product->get_bundled_items(); |
| 796 | 796 | |
| 797 | 797 | // do_action( 'woocommerce_before_bundled_items', $product ); |
@@ -807,16 +807,16 @@ discard block |
||
| 807 | 807 | // $this->widget_start( $args, $instance ); |
| 808 | 808 | |
| 809 | 809 | // @codingStandardsIgnoreLine |
| 810 | - echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' ); |
|
| 810 | + echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">'); |
|
| 811 | 811 | |
| 812 | - foreach ( $bundled_items as $bundled_item ) { |
|
| 813 | - $product = wc_get_product( $bundled_item->item_data['product_id'] ); |
|
| 814 | - wc_get_template( 'content-widget-product.php' ); |
|
| 812 | + foreach ($bundled_items as $bundled_item) { |
|
| 813 | + $product = wc_get_product($bundled_item->item_data['product_id']); |
|
| 814 | + wc_get_template('content-widget-product.php'); |
|
| 815 | 815 | $product = $product_original; |
| 816 | 816 | } |
| 817 | 817 | |
| 818 | 818 | // @codingStandardsIgnoreLine |
| 819 | - echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' ); |
|
| 819 | + echo apply_filters('woocommerce_after_widget_product_list', '</ul>'); |
|
| 820 | 820 | } |
| 821 | 821 | |
| 822 | 822 | // $this->widget_end( $args ); |
@@ -825,7 +825,7 @@ discard block |
||
| 825 | 825 | endif; |
| 826 | 826 | |
| 827 | 827 | |
| 828 | -if ( ! function_exists( 'lsx_wc_product_searchform' ) ) : |
|
| 828 | +if ( ! function_exists('lsx_wc_product_searchform')) : |
|
| 829 | 829 | /** |
| 830 | 830 | * woo_custom_product_searchform |
| 831 | 831 | * |
@@ -833,7 +833,7 @@ discard block |
||
| 833 | 833 | * @since 1.0 |
| 834 | 834 | * @return void |
| 835 | 835 | */ |
| 836 | - function lsx_wc_product_searchform( $form ) { |
|
| 836 | + function lsx_wc_product_searchform($form) { |
|
| 837 | 837 | |
| 838 | 838 | $form = ' |
| 839 | 839 | <form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( \'/\' ) ); ?>"> |
@@ -854,42 +854,42 @@ discard block |
||
| 854 | 854 | |
| 855 | 855 | } |
| 856 | 856 | endif; |
| 857 | -add_filter( 'get_product_search_form' , 'lsx_wc_product_searchform', 10, 1 ); |
|
| 857 | +add_filter('get_product_search_form', 'lsx_wc_product_searchform', 10, 1); |
|
| 858 | 858 | |
| 859 | 859 | /** |
| 860 | 860 | * Output the pagination. |
| 861 | 861 | */ |
| 862 | 862 | function woocommerce_pagination() { |
| 863 | - if ( ! wc_get_loop_prop( 'is_paginated' ) || ! woocommerce_products_will_display() ) { |
|
| 863 | + if ( ! wc_get_loop_prop('is_paginated') || ! woocommerce_products_will_display()) { |
|
| 864 | 864 | return; |
| 865 | 865 | } |
| 866 | 866 | $args = array( |
| 867 | - 'total' => wc_get_loop_prop( 'total_pages' ), |
|
| 868 | - 'current' => wc_get_loop_prop( 'current_page' ), |
|
| 867 | + 'total' => wc_get_loop_prop('total_pages'), |
|
| 868 | + 'current' => wc_get_loop_prop('current_page'), |
|
| 869 | 869 | ); |
| 870 | 870 | |
| 871 | - if ( wc_get_loop_prop( 'is_shortcode' ) ) { |
|
| 872 | - $args['base'] = esc_url_raw( add_query_arg( 'product-page', '%#%', false ) ); |
|
| 871 | + if (wc_get_loop_prop('is_shortcode')) { |
|
| 872 | + $args['base'] = esc_url_raw(add_query_arg('product-page', '%#%', false)); |
|
| 873 | 873 | $args['format'] = '?product-page = %#%'; |
| 874 | 874 | } else { |
| 875 | - $args['base'] = esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) ); |
|
| 875 | + $args['base'] = esc_url_raw(str_replace(999999999, '%#%', remove_query_arg('add-to-cart', get_pagenum_link(999999999, false)))); |
|
| 876 | 876 | $args['format'] = ''; |
| 877 | 877 | } |
| 878 | 878 | |
| 879 | - echo wp_kses_post( '<div class="lsx-pagination-wrapper">' ); |
|
| 880 | - $template = wc_get_template_html( 'loop/pagination.php', $args ); |
|
| 881 | - $template = str_replace( 'woocommerce-pagination', 'lsx-pagination', $template ); |
|
| 882 | - echo wp_kses_post( $template ); |
|
| 883 | - echo wp_kses_post( '</div>' ); |
|
| 879 | + echo wp_kses_post('<div class="lsx-pagination-wrapper">'); |
|
| 880 | + $template = wc_get_template_html('loop/pagination.php', $args); |
|
| 881 | + $template = str_replace('woocommerce-pagination', 'lsx-pagination', $template); |
|
| 882 | + echo wp_kses_post($template); |
|
| 883 | + echo wp_kses_post('</div>'); |
|
| 884 | 884 | } |
| 885 | 885 | |
| 886 | -function lsx_wc_pagination_args( $args ) { |
|
| 887 | - $args['prev_text'] = '<span class="meta-nav">←</span> ' . esc_html__( 'Previous', 'lsx' ); |
|
| 888 | - $args['next_text'] = esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">→</span>'; |
|
| 889 | - $args['type'] = 'plain'; |
|
| 886 | +function lsx_wc_pagination_args($args) { |
|
| 887 | + $args['prev_text'] = '<span class="meta-nav">←</span> ' . esc_html__('Previous', 'lsx'); |
|
| 888 | + $args['next_text'] = esc_html__('Next', 'lsx') . ' <span class="meta-nav">→</span>'; |
|
| 889 | + $args['type'] = 'plain'; |
|
| 890 | 890 | return $args; |
| 891 | 891 | } |
| 892 | -add_filter( 'woocommerce_pagination_args', 'lsx_wc_pagination_args',10 ,1 ); |
|
| 892 | +add_filter('woocommerce_pagination_args', 'lsx_wc_pagination_args', 10, 1); |
|
| 893 | 893 | |
| 894 | 894 | |
| 895 | 895 | /** |
@@ -899,19 +899,19 @@ discard block |
||
| 899 | 899 | * |
| 900 | 900 | * @return array |
| 901 | 901 | */ |
| 902 | -function lsx_wc_product_widget_template( $located, $template_name ) { |
|
| 903 | - if ( 'content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name ) { |
|
| 902 | +function lsx_wc_product_widget_template($located, $template_name) { |
|
| 903 | + if ('content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name) { |
|
| 904 | 904 | |
| 905 | 905 | $new_location = get_stylesheet_directory() . '/partials/' . $template_name; |
| 906 | - if ( file_exists( $new_location ) ) { |
|
| 906 | + if (file_exists($new_location)) { |
|
| 907 | 907 | $located = $new_location; |
| 908 | 908 | } else { |
| 909 | 909 | $new_location = get_parent_theme_file_path() . '/partials/' . $template_name; |
| 910 | - if ( file_exists( $new_location ) ) { |
|
| 910 | + if (file_exists($new_location)) { |
|
| 911 | 911 | $located = $new_location; |
| 912 | 912 | } |
| 913 | 913 | } |
| 914 | 914 | } |
| 915 | 915 | return $located; |
| 916 | 916 | } |
| 917 | -add_filter( 'wc_get_template', 'lsx_wc_product_widget_template',90 ,2 ); |
|
| 917 | +add_filter('wc_get_template', 'lsx_wc_product_widget_template', 90, 2); |
|
@@ -7,25 +7,25 @@ |
||
| 7 | 7 | * @package lsx |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 10 | +if ( ! defined('ABSPATH')) { |
|
| 11 | 11 | exit; |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | -define( 'LSX_VERSION', '2.6' ); |
|
| 14 | +define('LSX_VERSION', '2.6'); |
|
| 15 | 15 | |
| 16 | -if ( class_exists( 'WooCommerce' ) ) { |
|
| 16 | +if (class_exists('WooCommerce')) { |
|
| 17 | 17 | require get_template_directory() . '/includes/woocommerce/woocommerce.php'; |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -if ( class_exists( 'Tribe__Events__Main' ) ) { |
|
| 20 | +if (class_exists('Tribe__Events__Main')) { |
|
| 21 | 21 | require get_template_directory() . '/includes/the-events-calendar/the-events-calendar.php'; |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | -if ( class_exists( 'Sensei_Main' ) || class_exists( 'Sensei_WC' ) ) { |
|
| 24 | +if (class_exists('Sensei_Main') || class_exists('Sensei_WC')) { |
|
| 25 | 25 | require get_template_directory() . '/includes/sensei/class-lsx-sensei.php'; |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | -if ( class_exists( 'bbPress' ) ) { |
|
| 28 | +if (class_exists('bbPress')) { |
|
| 29 | 29 | require get_template_directory() . '/includes/bbpress/bbpress.php'; |
| 30 | 30 | } |
| 31 | 31 | |