@@ -9,66 +9,66 @@ |
||
| 9 | 9 | * |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 13 | - die( '-1' ); |
|
| 12 | +if ( ! defined('ABSPATH')) { |
|
| 13 | + die('-1'); |
|
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | $venue_details = tribe_get_venue_details(); |
| 17 | 17 | |
| 18 | 18 | // Venue microformats |
| 19 | -$has_venue = ( $venue_details ) ? ' vcard' : ''; |
|
| 20 | -$has_venue_address = ( ! empty( $venue_details['address'] ) ) ? ' location' : ''; |
|
| 19 | +$has_venue = ($venue_details) ? ' vcard' : ''; |
|
| 20 | +$has_venue_address = ( ! empty($venue_details['address'])) ? ' location' : ''; |
|
| 21 | 21 | |
| 22 | 22 | // Event Image |
| 23 | -echo tribe_event_featured_image( null, 'large' ); |
|
| 23 | +echo tribe_event_featured_image(null, 'large'); |
|
| 24 | 24 | ?> |
| 25 | 25 | |
| 26 | 26 | <div class="tribe-events-event-content"> |
| 27 | 27 | <!-- Event Title --> |
| 28 | - <?php do_action( 'tribe_events_before_the_event_title' ) ?> |
|
| 28 | + <?php do_action('tribe_events_before_the_event_title') ?> |
|
| 29 | 29 | <h2 class="tribe-events-list-event-title summary"> |
| 30 | - <a class="url" href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute() ?>" rel="bookmark"> |
|
| 30 | + <a class="url" href="<?php echo esc_url(tribe_get_event_link()); ?>" title="<?php the_title_attribute() ?>" rel="bookmark"> |
|
| 31 | 31 | <?php the_title() ?> |
| 32 | 32 | </a> |
| 33 | 33 | </h2> |
| 34 | - <?php do_action( 'tribe_events_after_the_event_title' ) ?> |
|
| 34 | + <?php do_action('tribe_events_after_the_event_title') ?> |
|
| 35 | 35 | |
| 36 | 36 | <!-- Event Meta --> |
| 37 | - <?php do_action( 'tribe_events_before_the_meta' ) ?> |
|
| 38 | - <div class="tribe-events-event-meta <?php echo esc_attr( $has_venue . $has_venue_address ); ?>"> |
|
| 37 | + <?php do_action('tribe_events_before_the_meta') ?> |
|
| 38 | + <div class="tribe-events-event-meta <?php echo esc_attr($has_venue . $has_venue_address); ?>"> |
|
| 39 | 39 | |
| 40 | 40 | <!-- Schedule & Recurrence Details --> |
| 41 | 41 | <div class="tribe-updated published time-details"> |
| 42 | 42 | <?php echo tribe_events_event_schedule_details(); ?> |
| 43 | 43 | </div> |
| 44 | 44 | |
| 45 | - <?php if ( $venue_details ) : ?> |
|
| 45 | + <?php if ($venue_details) : ?> |
|
| 46 | 46 | <!-- Venue Display Info --> |
| 47 | 47 | <div class="tribe-events-venue-details"> |
| 48 | - <?php echo implode( ', ', $venue_details ); ?> |
|
| 48 | + <?php echo implode(', ', $venue_details); ?> |
|
| 49 | 49 | </div> <!-- .tribe-events-venue-details --> |
| 50 | 50 | <?php endif; ?> |
| 51 | 51 | |
| 52 | 52 | </div><!-- .tribe-events-event-meta --> |
| 53 | - <?php do_action( 'tribe_events_after_the_meta' ) ?> |
|
| 53 | + <?php do_action('tribe_events_after_the_meta') ?> |
|
| 54 | 54 | |
| 55 | - <?php if ( tribe_get_cost() ) : ?> |
|
| 55 | + <?php if (tribe_get_cost()) : ?> |
|
| 56 | 56 | <div class="tribe-events-event-cost"> |
| 57 | - <?php esc_html_e( 'Price:', 'lsx' ) ?> |
|
| 58 | - <span class="ticket-cost"><?php echo tribe_get_cost( null, true ); ?></span> |
|
| 57 | + <?php esc_html_e('Price:', 'lsx') ?> |
|
| 58 | + <span class="ticket-cost"><?php echo tribe_get_cost(null, true); ?></span> |
|
| 59 | 59 | <?php |
| 60 | 60 | /** This action is documented in the-events-calendar/src/views/list/single-event.php */ |
| 61 | - do_action( 'tribe_events_inside_cost' ) |
|
| 61 | + do_action('tribe_events_inside_cost') |
|
| 62 | 62 | ?> |
| 63 | 63 | </div> |
| 64 | 64 | <?php endif; ?> |
| 65 | 65 | |
| 66 | 66 | <!-- Event Content --> |
| 67 | - <?php do_action( 'tribe_events_before_the_content' ) ?> |
|
| 67 | + <?php do_action('tribe_events_before_the_content') ?> |
|
| 68 | 68 | <div class="tribe-events-list-event-description tribe-events-content description entry-summary"> |
| 69 | 69 | <?php echo tribe_events_get_the_excerpt(); ?> |
| 70 | - <a href="<?php echo esc_url( tribe_get_event_link() ); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e( 'Find out more', 'the-events-calendar' ) ?></a> |
|
| 70 | + <a href="<?php echo esc_url(tribe_get_event_link()); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e('Find out more', 'the-events-calendar') ?></a> |
|
| 71 | 71 | </div><!-- .tribe-events-list-event-description --> |
| 72 | 72 | |
| 73 | - <?php do_action( 'tribe_events_after_the_content' ); ?> |
|
| 73 | + <?php do_action('tribe_events_after_the_content'); ?> |
|
| 74 | 74 | </div> |
@@ -9,76 +9,76 @@ |
||
| 9 | 9 | * |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 13 | - die( '-1' ); |
|
| 12 | +if ( ! defined('ABSPATH')) { |
|
| 13 | + die('-1'); |
|
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | $venue_details = tribe_get_venue_details(); |
| 17 | 17 | |
| 18 | 18 | // Venue microformats |
| 19 | -$has_venue = ( $venue_details ) ? ' vcard' : ''; |
|
| 20 | -$has_venue_address = ( ! empty( $venue_details['address'] ) ) ? ' location' : ''; |
|
| 19 | +$has_venue = ($venue_details) ? ' vcard' : ''; |
|
| 20 | +$has_venue_address = ( ! empty($venue_details['address'])) ? ' location' : ''; |
|
| 21 | 21 | |
| 22 | 22 | // The address string via tribe_get_venue_details will often be populated even when there's |
| 23 | 23 | // no address, so let's get the address string on its own for a couple of checks below. |
| 24 | 24 | $venue_address = tribe_get_address(); |
| 25 | 25 | |
| 26 | 26 | // Event Image |
| 27 | -echo tribe_event_featured_image( null, 'medium' ); |
|
| 27 | +echo tribe_event_featured_image(null, 'medium'); |
|
| 28 | 28 | ?> |
| 29 | 29 | |
| 30 | 30 | <div class="tribe-events-event-content"> |
| 31 | 31 | <!-- Event Title --> |
| 32 | - <?php do_action( 'tribe_events_before_the_event_title' ) ?> |
|
| 32 | + <?php do_action('tribe_events_before_the_event_title') ?> |
|
| 33 | 33 | <h2 class="tribe-events-list-event-title summary"> |
| 34 | - <a class="url" href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute() ?>" rel="bookmark"> |
|
| 34 | + <a class="url" href="<?php echo esc_url(tribe_get_event_link()); ?>" title="<?php the_title_attribute() ?>" rel="bookmark"> |
|
| 35 | 35 | <?php the_title() ?> |
| 36 | 36 | </a> |
| 37 | 37 | </h2> |
| 38 | - <?php do_action( 'tribe_events_after_the_event_title' ) ?> |
|
| 38 | + <?php do_action('tribe_events_after_the_event_title') ?> |
|
| 39 | 39 | |
| 40 | 40 | <!-- Event Meta --> |
| 41 | - <?php do_action( 'tribe_events_before_the_meta' ) ?> |
|
| 42 | - <div class="tribe-events-event-meta <?php echo esc_attr( $has_venue . $has_venue_address ); ?>"> |
|
| 41 | + <?php do_action('tribe_events_before_the_meta') ?> |
|
| 42 | + <div class="tribe-events-event-meta <?php echo esc_attr($has_venue . $has_venue_address); ?>"> |
|
| 43 | 43 | |
| 44 | 44 | <!-- Schedule & Recurrence Details --> |
| 45 | 45 | <div class="tribe-updated published time-details"> |
| 46 | 46 | <?php echo tribe_events_event_schedule_details(); ?> |
| 47 | 47 | </div> |
| 48 | 48 | |
| 49 | - <?php if ( $venue_details ) : ?> |
|
| 49 | + <?php if ($venue_details) : ?> |
|
| 50 | 50 | <!-- Venue Display Info --> |
| 51 | 51 | <div class="tribe-events-venue-details"> |
| 52 | 52 | <?php |
| 53 | - $address_delimiter = empty( $venue_address ) ? ' ' : ', '; |
|
| 53 | + $address_delimiter = empty($venue_address) ? ' ' : ', '; |
|
| 54 | 54 | |
| 55 | 55 | // These details are already escaped in various ways earlier in the code. |
| 56 | - echo implode( $address_delimiter, $venue_details ); |
|
| 56 | + echo implode($address_delimiter, $venue_details); |
|
| 57 | 57 | ?> |
| 58 | 58 | </div> <!-- .tribe-events-venue-details --> |
| 59 | 59 | <?php endif; ?> |
| 60 | 60 | |
| 61 | 61 | </div><!-- .tribe-events-event-meta --> |
| 62 | 62 | |
| 63 | - <?php if ( tribe_get_cost() ) : ?> |
|
| 63 | + <?php if (tribe_get_cost()) : ?> |
|
| 64 | 64 | <div class="tribe-events-event-cost"> |
| 65 | - <?php esc_html_e( 'Price:', 'lsx' ) ?> |
|
| 66 | - <span class="ticket-cost"><?php echo tribe_get_cost( null, true ); ?></span> |
|
| 65 | + <?php esc_html_e('Price:', 'lsx') ?> |
|
| 66 | + <span class="ticket-cost"><?php echo tribe_get_cost(null, true); ?></span> |
|
| 67 | 67 | <?php |
| 68 | 68 | /** This action is documented in the-events-calendar/src/views/list/single-event.php */ |
| 69 | - do_action( 'tribe_events_inside_cost' ) |
|
| 69 | + do_action('tribe_events_inside_cost') |
|
| 70 | 70 | ?> |
| 71 | 71 | </div> |
| 72 | 72 | <?php endif; ?> |
| 73 | 73 | |
| 74 | - <?php do_action( 'tribe_events_after_the_meta' ) ?> |
|
| 74 | + <?php do_action('tribe_events_after_the_meta') ?> |
|
| 75 | 75 | |
| 76 | 76 | <!-- Event Content --> |
| 77 | - <?php do_action( 'tribe_events_before_the_content' ) ?> |
|
| 77 | + <?php do_action('tribe_events_before_the_content') ?> |
|
| 78 | 78 | <div class="tribe-events-list-event-description tribe-events-content description entry-summary"> |
| 79 | 79 | <?php echo tribe_events_get_the_excerpt(); ?> |
| 80 | - <a href="<?php echo esc_url( tribe_get_event_link() ); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e( 'Find out more', 'the-events-calendar' ) ?></a> |
|
| 80 | + <a href="<?php echo esc_url(tribe_get_event_link()); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e('Find out more', 'the-events-calendar') ?></a> |
|
| 81 | 81 | </div><!-- .tribe-events-list-event-description --> |
| 82 | 82 | |
| 83 | - <?php do_action( 'tribe_events_after_the_content' ); ?> |
|
| 83 | + <?php do_action('tribe_events_after_the_content'); ?> |
|
| 84 | 84 | </div> |
@@ -6,13 +6,13 @@ discard block |
||
| 6 | 6 | * @subpackage sensei |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | global $woothemes_sensei; |
| 14 | 14 | |
| 15 | -if ( ! function_exists( 'lsx_sensei_scripts_add_styles' ) ) : |
|
| 15 | +if ( ! function_exists('lsx_sensei_scripts_add_styles')) : |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * Sensei enqueue styles. |
@@ -21,15 +21,15 @@ discard block |
||
| 21 | 21 | * @subpackage sensei |
| 22 | 22 | */ |
| 23 | 23 | function lsx_sensei_scripts_add_styles() { |
| 24 | - wp_enqueue_style( 'sensei-lsx', get_template_directory_uri() . '/assets/css/sensei.css', array( 'lsx_main' ), LSX_VERSION ); |
|
| 25 | - wp_style_add_data( 'sensei-lsx', 'rtl', 'replace' ); |
|
| 24 | + wp_enqueue_style('sensei-lsx', get_template_directory_uri() . '/assets/css/sensei.css', array('lsx_main'), LSX_VERSION); |
|
| 25 | + wp_style_add_data('sensei-lsx', 'rtl', 'replace'); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | - add_action( 'wp_enqueue_scripts', 'lsx_sensei_scripts_add_styles' ); |
|
| 28 | + add_action('wp_enqueue_scripts', 'lsx_sensei_scripts_add_styles'); |
|
| 29 | 29 | |
| 30 | 30 | endif; |
| 31 | 31 | |
| 32 | -if ( ! function_exists( 'lsx_sensei_theme_wrapper_start' ) ) : |
|
| 32 | +if ( ! function_exists('lsx_sensei_theme_wrapper_start')) : |
|
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | 35 | * Sensei wrapper start. |
@@ -39,18 +39,18 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | function lsx_sensei_theme_wrapper_start() { |
| 41 | 41 | lsx_content_wrap_before(); |
| 42 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
| 42 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
| 43 | 43 | lsx_content_before(); |
| 44 | 44 | echo '<main id="main" class="site-main" role="main">'; |
| 45 | 45 | lsx_content_top(); |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 ); |
|
| 49 | - add_action( 'sensei_before_main_content', 'lsx_sensei_theme_wrapper_start' ); |
|
| 48 | + remove_action('sensei_before_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper'), 10); |
|
| 49 | + add_action('sensei_before_main_content', 'lsx_sensei_theme_wrapper_start'); |
|
| 50 | 50 | |
| 51 | 51 | endif; |
| 52 | 52 | |
| 53 | -if ( ! function_exists( 'lsx_sensei_theme_wrapper_end' ) ) : |
|
| 53 | +if ( ! function_exists('lsx_sensei_theme_wrapper_end')) : |
|
| 54 | 54 | |
| 55 | 55 | /** |
| 56 | 56 | * Sensei wrapper end. |
@@ -66,12 +66,12 @@ discard block |
||
| 66 | 66 | lsx_content_wrap_after(); |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 ); |
|
| 70 | - add_action( 'sensei_after_main_content', 'lsx_sensei_theme_wrapper_end' ); |
|
| 69 | + remove_action('sensei_after_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper_end'), 10); |
|
| 70 | + add_action('sensei_after_main_content', 'lsx_sensei_theme_wrapper_end'); |
|
| 71 | 71 | |
| 72 | 72 | endif; |
| 73 | 73 | |
| 74 | -if ( ! function_exists( 'lsx_sensei_disable_lsx_banner' ) ) : |
|
| 74 | +if ( ! function_exists('lsx_sensei_disable_lsx_banner')) : |
|
| 75 | 75 | |
| 76 | 76 | /** |
| 77 | 77 | * Disable LSX Banners in some Sensei pages. |
@@ -79,8 +79,8 @@ discard block |
||
| 79 | 79 | * @package lsx |
| 80 | 80 | * @subpackage sensei |
| 81 | 81 | */ |
| 82 | - function lsx_sensei_disable_lsx_banner( $disabled ) { |
|
| 83 | - if ( is_sensei() ) { |
|
| 82 | + function lsx_sensei_disable_lsx_banner($disabled) { |
|
| 83 | + if (is_sensei()) { |
|
| 84 | 84 | $disabled = true; |
| 85 | 85 | } |
| 86 | 86 | |
@@ -88,15 +88,15 @@ discard block |
||
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | // LSX |
| 91 | - add_filter( 'lsx_global_header_disable', 'lsx_sensei_disable_lsx_banner' ); |
|
| 91 | + add_filter('lsx_global_header_disable', 'lsx_sensei_disable_lsx_banner'); |
|
| 92 | 92 | // LSX Banners - Plugin, Placeholders |
| 93 | - add_filter( 'lsx_banner_plugin_disable', 'lsx_sensei_disable_lsx_banner' ); |
|
| 93 | + add_filter('lsx_banner_plugin_disable', 'lsx_sensei_disable_lsx_banner'); |
|
| 94 | 94 | // LSX Banners - Banner |
| 95 | - add_filter( 'lsx_banner_disable', 'lsx_sensei_disable_lsx_banner' ); |
|
| 95 | + add_filter('lsx_banner_disable', 'lsx_sensei_disable_lsx_banner'); |
|
| 96 | 96 | |
| 97 | 97 | endif; |
| 98 | 98 | |
| 99 | -if ( ! function_exists( 'lsx_sensei_archive_title' ) ) : |
|
| 99 | +if ( ! function_exists('lsx_sensei_archive_title')) : |
|
| 100 | 100 | |
| 101 | 101 | /** |
| 102 | 102 | * Filters the archive title. |
@@ -104,17 +104,17 @@ discard block |
||
| 104 | 104 | * @package lsx |
| 105 | 105 | * @subpackage sensei |
| 106 | 106 | */ |
| 107 | - function lsx_sensei_archive_title( $html ) { |
|
| 108 | - $html = preg_replace( '/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html ); |
|
| 107 | + function lsx_sensei_archive_title($html) { |
|
| 108 | + $html = preg_replace('/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html); |
|
| 109 | 109 | return $html; |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | - add_filter( 'course_archive_title', 'lsx_sensei_archive_title', 10, 1 ); |
|
| 113 | - add_filter( 'sensei_lesson_archive_title', 'lsx_sensei_archive_title', 10, 1 ); |
|
| 112 | + add_filter('course_archive_title', 'lsx_sensei_archive_title', 10, 1); |
|
| 113 | + add_filter('sensei_lesson_archive_title', 'lsx_sensei_archive_title', 10, 1); |
|
| 114 | 114 | |
| 115 | 115 | endif; |
| 116 | 116 | |
| 117 | -if ( ! function_exists( 'lsx_sensei_category_title' ) ) : |
|
| 117 | +if ( ! function_exists('lsx_sensei_category_title')) : |
|
| 118 | 118 | |
| 119 | 119 | /** |
| 120 | 120 | * Filters the archive title. |
@@ -122,24 +122,24 @@ discard block |
||
| 122 | 122 | * @package lsx |
| 123 | 123 | * @subpackage sensei |
| 124 | 124 | */ |
| 125 | - function lsx_sensei_category_title( $html ) { |
|
| 126 | - $html = str_replace( 'h2', 'h1', $html ); |
|
| 125 | + function lsx_sensei_category_title($html) { |
|
| 126 | + $html = str_replace('h2', 'h1', $html); |
|
| 127 | 127 | return $html; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - add_filter( 'course_category_title', 'lsx_sensei_category_title', 10, 1 ); |
|
| 130 | + add_filter('course_category_title', 'lsx_sensei_category_title', 10, 1); |
|
| 131 | 131 | |
| 132 | 132 | endif; |
| 133 | 133 | |
| 134 | 134 | // Switching the course filters and the headers around |
| 135 | -remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 10, 0 ); |
|
| 136 | -remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ) ); |
|
| 137 | -remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ) ); |
|
| 138 | -add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 11, 0 ); |
|
| 139 | -add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ),12 ); |
|
| 140 | -add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ),12 ); |
|
| 135 | +remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 10, 0); |
|
| 136 | +remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting')); |
|
| 137 | +remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters')); |
|
| 138 | +add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 11, 0); |
|
| 139 | +add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'), 12); |
|
| 140 | +add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'), 12); |
|
| 141 | 141 | |
| 142 | -if ( ! function_exists( 'lsx_sensei_add_buttons' ) ) : |
|
| 142 | +if ( ! function_exists('lsx_sensei_add_buttons')) : |
|
| 143 | 143 | |
| 144 | 144 | /** |
| 145 | 145 | * Add extra buttons to the single view on lists. |
@@ -147,27 +147,27 @@ discard block |
||
| 147 | 147 | * @package lsx |
| 148 | 148 | * @subpackage sensei |
| 149 | 149 | */ |
| 150 | - function lsx_sensei_add_buttons( $course_id ) { |
|
| 150 | + function lsx_sensei_add_buttons($course_id) { |
|
| 151 | 151 | global $post, $current_user; |
| 152 | - $is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID ); |
|
| 152 | + $is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID); |
|
| 153 | 153 | ?> |
| 154 | 154 | <section class="entry-actions"> |
| 155 | - <a class="button" href="<?php echo esc_url( tribe_get_event_link() ); ?>"><?php esc_html_e( 'View course', 'lsx' ); ?></a> |
|
| 155 | + <a class="button" href="<?php echo esc_url(tribe_get_event_link()); ?>"><?php esc_html_e('View course', 'lsx'); ?></a> |
|
| 156 | 156 | |
| 157 | 157 | <?php |
| 158 | - if ( is_user_logged_in() && ! $is_user_taking_course ) { |
|
| 159 | - Sensei_WC::the_add_to_cart_button_html( $post->ID ); |
|
| 158 | + if (is_user_logged_in() && ! $is_user_taking_course) { |
|
| 159 | + Sensei_WC::the_add_to_cart_button_html($post->ID); |
|
| 160 | 160 | } |
| 161 | 161 | ?> |
| 162 | 162 | </section> |
| 163 | 163 | <?php |
| 164 | 164 | } |
| 165 | 165 | |
| 166 | - add_action( 'sensei_course_content_inside_after', 'lsx_sensei_add_buttons', 9 ); |
|
| 166 | + add_action('sensei_course_content_inside_after', 'lsx_sensei_add_buttons', 9); |
|
| 167 | 167 | |
| 168 | 168 | endif; |
| 169 | 169 | |
| 170 | -if ( ! function_exists( 'lsx_sensei_add_to_cart_text' ) ) : |
|
| 170 | +if ( ! function_exists('lsx_sensei_add_to_cart_text')) : |
|
| 171 | 171 | |
| 172 | 172 | /** |
| 173 | 173 | * Change add to cart button text. |
@@ -175,12 +175,12 @@ discard block |
||
| 175 | 175 | * @package lsx |
| 176 | 176 | * @subpackage sensei |
| 177 | 177 | */ |
| 178 | - function lsx_sensei_add_to_cart_text( $text ) { |
|
| 179 | - $text = esc_html__( 'Add to cart', 'lsx' ); |
|
| 178 | + function lsx_sensei_add_to_cart_text($text) { |
|
| 179 | + $text = esc_html__('Add to cart', 'lsx'); |
|
| 180 | 180 | return $text; |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | - add_filter( 'sensei_wc_single_add_to_cart_button_text', 'lsx_sensei_add_to_cart_text' ); |
|
| 183 | + add_filter('sensei_wc_single_add_to_cart_button_text', 'lsx_sensei_add_to_cart_text'); |
|
| 184 | 184 | |
| 185 | 185 | endif; |
| 186 | 186 | |
@@ -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 | return $allowedtags; |
@@ -35,9 +35,9 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | endif; |
| 37 | 37 | |
| 38 | -add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 ); |
|
| 38 | +add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2); |
|
| 39 | 39 | |
| 40 | -if ( ! function_exists( 'lsx_body_class' ) ) : |
|
| 40 | +if ( ! function_exists('lsx_body_class')) : |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Add and remove body_class() classes. |
@@ -45,44 +45,44 @@ discard block |
||
| 45 | 45 | * @package lsx |
| 46 | 46 | * @subpackage extras |
| 47 | 47 | */ |
| 48 | - function lsx_body_class( $classes ) { |
|
| 48 | + function lsx_body_class($classes) { |
|
| 49 | 49 | global $post; |
| 50 | 50 | |
| 51 | - $header_layout = get_theme_mod( 'lsx_header_layout', 'inline' ); |
|
| 51 | + $header_layout = get_theme_mod('lsx_header_layout', 'inline'); |
|
| 52 | 52 | $classes[] = 'header-' . $header_layout; |
| 53 | 53 | |
| 54 | - if ( isset( $post ) ) { |
|
| 54 | + if (isset($post)) { |
|
| 55 | 55 | $classes[] = $post->post_name; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - if ( ! class_exists( 'LSX_Banners' ) || ! empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) { |
|
| 59 | - $post_types = array( 'page', 'post' ); |
|
| 60 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
| 58 | + if ( ! class_exists('LSX_Banners') || ! empty(apply_filters('lsx_banner_plugin_disable', false))) { |
|
| 59 | + $post_types = array('page', 'post'); |
|
| 60 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
| 61 | 61 | |
| 62 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) { |
|
| 62 | + if (is_singular($post_types) && has_post_thumbnail()) { |
|
| 63 | 63 | $classes[] = 'page-has-banner'; |
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) { |
|
| 67 | + if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) { |
|
| 68 | 68 | $classes[] = 'has-top-menu'; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - $fixed_header = get_theme_mod( 'lsx_header_fixed', false ); |
|
| 71 | + $fixed_header = get_theme_mod('lsx_header_fixed', false); |
|
| 72 | 72 | |
| 73 | - if ( false !== $fixed_header ) { |
|
| 73 | + if (false !== $fixed_header) { |
|
| 74 | 74 | $classes[] = 'top-menu-fixed'; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
| 77 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
| 78 | 78 | |
| 79 | - if ( false !== $search_form ) { |
|
| 79 | + if (false !== $search_form) { |
|
| 80 | 80 | $classes[] = 'has-header-search'; |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - $preloader_content = get_theme_mod( 'lsx_preloader_content_status', false ); |
|
| 83 | + $preloader_content = get_theme_mod('lsx_preloader_content_status', false); |
|
| 84 | 84 | |
| 85 | - if ( false !== $preloader_content ) { |
|
| 85 | + if (false !== $preloader_content) { |
|
| 86 | 86 | $classes[] = 'preloader-content-enable'; |
| 87 | 87 | } |
| 88 | 88 | |
@@ -91,9 +91,9 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | endif; |
| 93 | 93 | |
| 94 | -add_filter( 'body_class', 'lsx_body_class' ); |
|
| 94 | +add_filter('body_class', 'lsx_body_class'); |
|
| 95 | 95 | |
| 96 | -if ( ! function_exists( 'lsx_embed_wrap' ) ) : |
|
| 96 | +if ( ! function_exists('lsx_embed_wrap')) : |
|
| 97 | 97 | |
| 98 | 98 | /** |
| 99 | 99 | * Wrap embedded media as suggested by Readability. |
@@ -104,8 +104,8 @@ discard block |
||
| 104 | 104 | * @link https://gist.github.com/965956 |
| 105 | 105 | * @link http://www.readability.com/publishers/guidelines#publisher |
| 106 | 106 | */ |
| 107 | - function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) { |
|
| 108 | - if ( false !== strpos( $cache, '<iframe' ) ) { |
|
| 107 | + function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') { |
|
| 108 | + if (false !== strpos($cache, '<iframe')) { |
|
| 109 | 109 | return '<div class="entry-content-asset">' . $cache . '</div>'; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -114,9 +114,9 @@ discard block |
||
| 114 | 114 | |
| 115 | 115 | endif; |
| 116 | 116 | |
| 117 | -add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 ); |
|
| 117 | +add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4); |
|
| 118 | 118 | |
| 119 | -if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) : |
|
| 119 | +if ( ! function_exists('lsx_remove_self_closing_tags')) : |
|
| 120 | 120 | |
| 121 | 121 | /** |
| 122 | 122 | * Remove unnecessary self-closing tags. |
@@ -124,17 +124,17 @@ discard block |
||
| 124 | 124 | * @package lsx |
| 125 | 125 | * @subpackage extras |
| 126 | 126 | */ |
| 127 | - function lsx_remove_self_closing_tags( $input ) { |
|
| 128 | - return str_replace( ' />', '>', $input ); |
|
| 127 | + function lsx_remove_self_closing_tags($input) { |
|
| 128 | + return str_replace(' />', '>', $input); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | endif; |
| 132 | 132 | |
| 133 | -add_filter( 'get_avatar', 'lsx_remove_self_closing_tags' ); // <img /> |
|
| 134 | -add_filter( 'comment_id_fields', 'lsx_remove_self_closing_tags' ); // <input /> |
|
| 135 | -add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img /> |
|
| 133 | +add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img /> |
|
| 134 | +add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input /> |
|
| 135 | +add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img /> |
|
| 136 | 136 | |
| 137 | -if ( ! function_exists( 'lsx_is_element_empty' ) ) : |
|
| 137 | +if ( ! function_exists('lsx_is_element_empty')) : |
|
| 138 | 138 | |
| 139 | 139 | /** |
| 140 | 140 | * Checks if a Nav $element is empty or not. |
@@ -142,14 +142,14 @@ discard block |
||
| 142 | 142 | * @package lsx |
| 143 | 143 | * @subpackage extras |
| 144 | 144 | */ |
| 145 | - function lsx_is_element_empty( $element ) { |
|
| 146 | - $element = trim( $element ); |
|
| 147 | - return empty( $element ) ? false : true; |
|
| 145 | + function lsx_is_element_empty($element) { |
|
| 146 | + $element = trim($element); |
|
| 147 | + return empty($element) ? false : true; |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | endif; |
| 151 | 151 | |
| 152 | -if ( ! function_exists( 'lsx_get_thumbnail' ) ) : |
|
| 152 | +if ( ! function_exists('lsx_get_thumbnail')) : |
|
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | 155 | * return the responsive images. |
@@ -157,44 +157,44 @@ discard block |
||
| 157 | 157 | * @package lsx |
| 158 | 158 | * @subpackage extras |
| 159 | 159 | */ |
| 160 | - function lsx_get_thumbnail( $size, $image_src = false ) { |
|
| 161 | - if ( false === $image_src ) { |
|
| 160 | + function lsx_get_thumbnail($size, $image_src = false) { |
|
| 161 | + if (false === $image_src) { |
|
| 162 | 162 | $post_id = get_the_ID(); |
| 163 | - $post_thumbnail_id = get_post_thumbnail_id( $post_id ); |
|
| 164 | - } elseif ( false !== $image_src ) { |
|
| 165 | - if ( is_numeric( $image_src ) ) { |
|
| 163 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 164 | + } elseif (false !== $image_src) { |
|
| 165 | + if (is_numeric($image_src)) { |
|
| 166 | 166 | $post_thumbnail_id = $image_src; |
| 167 | 167 | } else { |
| 168 | - $post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src ); |
|
| 168 | + $post_thumbnail_id = lsx_get_attachment_id_from_src($image_src); |
|
| 169 | 169 | } |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | - $size = apply_filters( 'lsx_thumbnail_size', $size ); |
|
| 172 | + $size = apply_filters('lsx_thumbnail_size', $size); |
|
| 173 | 173 | $img = false; |
| 174 | 174 | |
| 175 | - if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) { |
|
| 175 | + if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) { |
|
| 176 | 176 | $srcset = false; |
| 177 | - $img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
| 177 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
| 178 | 178 | $img = $img[0]; |
| 179 | 179 | } else { |
| 180 | 180 | $srcset = true; |
| 181 | - $img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size ); |
|
| 181 | + $img = wp_get_attachment_image_srcset($post_thumbnail_id, $size); |
|
| 182 | 182 | |
| 183 | - if ( empty( $img ) ) { |
|
| 183 | + if (empty($img)) { |
|
| 184 | 184 | $srcset = false; |
| 185 | - $img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
| 185 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
| 186 | 186 | $img = $img[0]; |
| 187 | 187 | } |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - if ( ! empty( $img ) ) { |
|
| 191 | - if ( $srcset ) { |
|
| 192 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr( $img ) . '" />'; |
|
| 190 | + if ( ! empty($img)) { |
|
| 191 | + if ($srcset) { |
|
| 192 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr($img) . '" />'; |
|
| 193 | 193 | } else { |
| 194 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $img ) . '" />'; |
|
| 194 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($img) . '" />'; |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | - $img = apply_filters( 'lsx_lazyload_filter_images', $img ); |
|
| 197 | + $img = apply_filters('lsx_lazyload_filter_images', $img); |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | return $img; |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | |
| 203 | 203 | endif; |
| 204 | 204 | |
| 205 | -if ( ! function_exists( 'lsx_thumbnail' ) ) : |
|
| 205 | +if ( ! function_exists('lsx_thumbnail')) : |
|
| 206 | 206 | |
| 207 | 207 | /** |
| 208 | 208 | * Output the Resonsive Images. |
@@ -210,13 +210,13 @@ discard block |
||
| 210 | 210 | * @package lsx |
| 211 | 211 | * @subpackage extras |
| 212 | 212 | */ |
| 213 | - function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) { |
|
| 214 | - echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) ); |
|
| 213 | + function lsx_thumbnail($size = 'thumbnail', $image_src = false) { |
|
| 214 | + echo wp_kses_post(lsx_get_thumbnail($size, $image_src)); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | endif; |
| 218 | 218 | |
| 219 | -if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) : |
|
| 219 | +if ( ! function_exists('lsx_get_attachment_id_from_src')) : |
|
| 220 | 220 | |
| 221 | 221 | /** |
| 222 | 222 | * Gets the attachments ID from the src. |
@@ -224,13 +224,13 @@ discard block |
||
| 224 | 224 | * @package lsx |
| 225 | 225 | * @subpackage extras |
| 226 | 226 | */ |
| 227 | - function lsx_get_attachment_id_from_src( $image_src ) { |
|
| 228 | - $post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' ); |
|
| 227 | + function lsx_get_attachment_id_from_src($image_src) { |
|
| 228 | + $post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src'); |
|
| 229 | 229 | |
| 230 | - if ( false === $post_id ) { |
|
| 230 | + if (false === $post_id) { |
|
| 231 | 231 | global $wpdb; |
| 232 | - $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) ); |
|
| 233 | - wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 ); |
|
| 232 | + $post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src)); |
|
| 233 | + wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600); |
|
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | return $post_id; |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | |
| 239 | 239 | endif; |
| 240 | 240 | |
| 241 | -if ( ! function_exists( 'lsx_page_banner' ) ) : |
|
| 241 | +if ( ! function_exists('lsx_page_banner')) : |
|
| 242 | 242 | |
| 243 | 243 | /** |
| 244 | 244 | * Add Featured Image as Banner on Single Pages. |
@@ -247,26 +247,26 @@ discard block |
||
| 247 | 247 | * @subpackage extras |
| 248 | 248 | */ |
| 249 | 249 | function lsx_page_banner() { |
| 250 | - if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) { |
|
| 250 | + if (true === apply_filters('lsx_page_banner_disable', false)) { |
|
| 251 | 251 | return; |
| 252 | 252 | } |
| 253 | 253 | |
| 254 | - $post_types = array( 'page', 'post' ); |
|
| 255 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
| 254 | + $post_types = array('page', 'post'); |
|
| 255 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
| 256 | 256 | |
| 257 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) : |
|
| 257 | + if (is_singular($post_types) && has_post_thumbnail()) : |
|
| 258 | 258 | $bg_image = ''; |
| 259 | 259 | |
| 260 | - if ( has_post_thumbnail() ) { |
|
| 261 | - $bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' ); |
|
| 260 | + if (has_post_thumbnail()) { |
|
| 261 | + $bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full'); |
|
| 262 | 262 | $bg_image = $bg_image[0]; |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - if ( ! empty( $bg_image ) ) : |
|
| 265 | + if ( ! empty($bg_image)) : |
|
| 266 | 266 | ?> |
| 267 | 267 | <div class="page-banner-wrap"> |
| 268 | 268 | <div class="page-banner"> |
| 269 | - <div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div> |
|
| 269 | + <div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div> |
|
| 270 | 270 | |
| 271 | 271 | <div class="container"> |
| 272 | 272 | <header class="page-header"> |
@@ -285,9 +285,9 @@ discard block |
||
| 285 | 285 | |
| 286 | 286 | endif; |
| 287 | 287 | |
| 288 | -add_action( 'lsx_header_after', 'lsx_page_banner' ); |
|
| 288 | +add_action('lsx_header_after', 'lsx_page_banner'); |
|
| 289 | 289 | |
| 290 | -if ( ! function_exists( 'lsx_form_submit_button' ) ) : |
|
| 290 | +if ( ! function_exists('lsx_form_submit_button')) : |
|
| 291 | 291 | |
| 292 | 292 | /** |
| 293 | 293 | * filter the Gravity Forms button type. |
@@ -299,15 +299,15 @@ discard block |
||
| 299 | 299 | * @param $form Object |
| 300 | 300 | * @return String |
| 301 | 301 | */ |
| 302 | - function lsx_form_submit_button( $button, $form ) { |
|
| 302 | + function lsx_form_submit_button($button, $form) { |
|
| 303 | 303 | return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>"; |
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | endif; |
| 307 | 307 | |
| 308 | -add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 ); |
|
| 308 | +add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2); |
|
| 309 | 309 | |
| 310 | -if ( ! function_exists( 'lsx_excerpt_more' ) ) : |
|
| 310 | +if ( ! function_exists('lsx_excerpt_more')) : |
|
| 311 | 311 | |
| 312 | 312 | /** |
| 313 | 313 | * Replaces the excerpt "more" text by a link. |
@@ -315,15 +315,15 @@ discard block |
||
| 315 | 315 | * @package lsx |
| 316 | 316 | * @subpackage extras |
| 317 | 317 | */ |
| 318 | - function lsx_excerpt_more( $more ) { |
|
| 318 | + function lsx_excerpt_more($more) { |
|
| 319 | 319 | return '...'; |
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | endif; |
| 323 | 323 | |
| 324 | -add_filter( 'excerpt_more', 'lsx_excerpt_more' ); |
|
| 324 | +add_filter('excerpt_more', 'lsx_excerpt_more'); |
|
| 325 | 325 | |
| 326 | -if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) : |
|
| 326 | +if ( ! function_exists('lsx_the_excerpt_filter')) : |
|
| 327 | 327 | |
| 328 | 328 | /** |
| 329 | 329 | * Add a continue reading link to the excerpt. |
@@ -331,24 +331,24 @@ discard block |
||
| 331 | 331 | * @package lsx |
| 332 | 332 | * @subpackage extras |
| 333 | 333 | */ |
| 334 | - function lsx_the_excerpt_filter( $excerpt ) { |
|
| 335 | - $show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio' ) ) ); |
|
| 334 | + function lsx_the_excerpt_filter($excerpt) { |
|
| 335 | + $show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio'))); |
|
| 336 | 336 | |
| 337 | - if ( ! $show_full_content ) { |
|
| 338 | - if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) { |
|
| 339 | - $pagination = wp_link_pages( array( |
|
| 337 | + if ( ! $show_full_content) { |
|
| 338 | + if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) { |
|
| 339 | + $pagination = wp_link_pages(array( |
|
| 340 | 340 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
| 341 | 341 | 'after' => '</div></div>', |
| 342 | 342 | 'link_before' => '<span>', |
| 343 | 343 | 'link_after' => '</span>', |
| 344 | 344 | 'echo' => 0, |
| 345 | - ) ); |
|
| 345 | + )); |
|
| 346 | 346 | |
| 347 | - if ( ! empty( $pagination ) ) { |
|
| 347 | + if ( ! empty($pagination)) { |
|
| 348 | 348 | $excerpt .= $pagination; |
| 349 | 349 | } else { |
| 350 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Continue reading', 'lsx' ) . '</a></p>'; |
|
| 351 | - $excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more ); |
|
| 350 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Continue reading', 'lsx') . '</a></p>'; |
|
| 351 | + $excerpt .= apply_filters('excerpt_more_p', $excerpt_more); |
|
| 352 | 352 | } |
| 353 | 353 | } |
| 354 | 354 | } |
@@ -358,9 +358,9 @@ discard block |
||
| 358 | 358 | |
| 359 | 359 | endif; |
| 360 | 360 | |
| 361 | -add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 ); |
|
| 361 | +add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20); |
|
| 362 | 362 | |
| 363 | -if ( ! function_exists( 'lsx_custom_wp_trim_excerpt' ) ) : |
|
| 363 | +if ( ! function_exists('lsx_custom_wp_trim_excerpt')) : |
|
| 364 | 364 | |
| 365 | 365 | /** |
| 366 | 366 | * Allow HTML tags in excerpt. |
@@ -368,33 +368,33 @@ discard block |
||
| 368 | 368 | * @package lsx |
| 369 | 369 | * @subpackage extras |
| 370 | 370 | */ |
| 371 | - function lsx_custom_wp_trim_excerpt( $wpse_excerpt ) { |
|
| 371 | + function lsx_custom_wp_trim_excerpt($wpse_excerpt) { |
|
| 372 | 372 | global $post; |
| 373 | 373 | $raw_excerpt = $wpse_excerpt; |
| 374 | 374 | |
| 375 | - if ( empty( $wpse_excerpt ) ) { |
|
| 376 | - $wpse_excerpt = get_the_content( '' ); |
|
| 377 | - $show_full_content = has_post_format( array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio' ) ); |
|
| 375 | + if (empty($wpse_excerpt)) { |
|
| 376 | + $wpse_excerpt = get_the_content(''); |
|
| 377 | + $show_full_content = has_post_format(array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio')); |
|
| 378 | 378 | |
| 379 | - if ( ! $show_full_content ) { |
|
| 380 | - $wpse_excerpt = strip_shortcodes( $wpse_excerpt ); |
|
| 381 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
| 382 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
| 383 | - $wpse_excerpt = strip_tags( $wpse_excerpt, apply_filters( 'excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>' ) ); |
|
| 379 | + if ( ! $show_full_content) { |
|
| 380 | + $wpse_excerpt = strip_shortcodes($wpse_excerpt); |
|
| 381 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
| 382 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
| 383 | + $wpse_excerpt = strip_tags($wpse_excerpt, apply_filters('excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>')); |
|
| 384 | 384 | |
| 385 | 385 | $excerpt_word_count = 50; |
| 386 | - $excerpt_word_count = apply_filters( 'excerpt_length', $excerpt_word_count ); |
|
| 386 | + $excerpt_word_count = apply_filters('excerpt_length', $excerpt_word_count); |
|
| 387 | 387 | |
| 388 | 388 | $tokens = array(); |
| 389 | 389 | $excerpt_output = ''; |
| 390 | 390 | $has_more = false; |
| 391 | 391 | $count = 0; |
| 392 | 392 | |
| 393 | - preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens ); |
|
| 393 | + preg_match_all('/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens); |
|
| 394 | 394 | |
| 395 | - foreach ( $tokens[0] as $token ) { |
|
| 396 | - if ( $count >= $excerpt_word_count ) { |
|
| 397 | - $excerpt_output .= trim( $token ); |
|
| 395 | + foreach ($tokens[0] as $token) { |
|
| 396 | + if ($count >= $excerpt_word_count) { |
|
| 397 | + $excerpt_output .= trim($token); |
|
| 398 | 398 | $has_more = true; |
| 399 | 399 | break; |
| 400 | 400 | } |
@@ -403,41 +403,41 @@ discard block |
||
| 403 | 403 | $excerpt_output .= $token; |
| 404 | 404 | } |
| 405 | 405 | |
| 406 | - $wpse_excerpt = trim( force_balance_tags( $excerpt_output ) ); |
|
| 406 | + $wpse_excerpt = trim(force_balance_tags($excerpt_output)); |
|
| 407 | 407 | |
| 408 | - if ( $has_more ) { |
|
| 409 | - $excerpt_end = '<a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'More', 'lsx' ) . '</a>'; |
|
| 410 | - $excerpt_end = apply_filters( 'excerpt_more', ' ' . $excerpt_end ); |
|
| 408 | + if ($has_more) { |
|
| 409 | + $excerpt_end = '<a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('More', 'lsx') . '</a>'; |
|
| 410 | + $excerpt_end = apply_filters('excerpt_more', ' ' . $excerpt_end); |
|
| 411 | 411 | |
| 412 | - $pos = strrpos( $wpse_excerpt, '</' ); |
|
| 412 | + $pos = strrpos($wpse_excerpt, '</'); |
|
| 413 | 413 | |
| 414 | - if ( false !== $pos ) { |
|
| 414 | + if (false !== $pos) { |
|
| 415 | 415 | // Inside last HTML tag |
| 416 | - $wpse_excerpt = substr_replace( $wpse_excerpt, $excerpt_end, $pos, 0 ); /* Add read more next to last word */ |
|
| 416 | + $wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */ |
|
| 417 | 417 | } else { |
| 418 | 418 | // After the content |
| 419 | 419 | $wpse_excerpt .= $excerpt_end; /*Add read more in new paragraph */ |
| 420 | 420 | } |
| 421 | 421 | } |
| 422 | 422 | } else { |
| 423 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
| 424 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
| 423 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
| 424 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
| 425 | 425 | //$wpse_excerpt = strip_tags( $wpse_excerpt, '<blockquote>,<p>' ); |
| 426 | - $wpse_excerpt = trim( force_balance_tags( $wpse_excerpt ) ); |
|
| 426 | + $wpse_excerpt = trim(force_balance_tags($wpse_excerpt)); |
|
| 427 | 427 | } |
| 428 | 428 | |
| 429 | 429 | return $wpse_excerpt; |
| 430 | 430 | } |
| 431 | 431 | |
| 432 | - return apply_filters( 'lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt ); |
|
| 432 | + return apply_filters('lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt); |
|
| 433 | 433 | } |
| 434 | 434 | |
| 435 | 435 | endif; |
| 436 | 436 | |
| 437 | -remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' ); |
|
| 438 | -add_filter( 'get_the_excerpt', 'lsx_custom_wp_trim_excerpt' ); |
|
| 437 | +remove_filter('get_the_excerpt', 'wp_trim_excerpt'); |
|
| 438 | +add_filter('get_the_excerpt', 'lsx_custom_wp_trim_excerpt'); |
|
| 439 | 439 | |
| 440 | -if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) : |
|
| 440 | +if ( ! function_exists('lsx_full_width_widget_classes')) : |
|
| 441 | 441 | |
| 442 | 442 | /** |
| 443 | 443 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -445,8 +445,8 @@ discard block |
||
| 445 | 445 | * @package lsx |
| 446 | 446 | * @subpackage extras |
| 447 | 447 | */ |
| 448 | - function lsx_full_width_widget_classes( $params ) { |
|
| 449 | - if ( is_admin() ) { |
|
| 448 | + function lsx_full_width_widget_classes($params) { |
|
| 449 | + if (is_admin()) { |
|
| 450 | 450 | return $params; |
| 451 | 451 | } |
| 452 | 452 | |
@@ -455,9 +455,9 @@ discard block |
||
| 455 | 455 | $widget_id = $params[0]['widget_id']; |
| 456 | 456 | $widget_name = $params[0]['widget_name']; |
| 457 | 457 | |
| 458 | - if ( 'Text' === $widget_name ) { |
|
| 459 | - $wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback']; |
|
| 460 | - $wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
| 458 | + if ('Text' === $widget_name) { |
|
| 459 | + $wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback']; |
|
| 460 | + $wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
| 461 | 461 | } |
| 462 | 462 | |
| 463 | 463 | return $params; |
@@ -465,9 +465,9 @@ discard block |
||
| 465 | 465 | |
| 466 | 466 | endif; |
| 467 | 467 | |
| 468 | -add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' ); |
|
| 468 | +add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes'); |
|
| 469 | 469 | |
| 470 | -if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) : |
|
| 470 | +if ( ! function_exists('lsx_full_width_widget_custom_callback')) : |
|
| 471 | 471 | |
| 472 | 472 | /** |
| 473 | 473 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -481,25 +481,25 @@ discard block |
||
| 481 | 481 | $original_callback_params = func_get_args(); |
| 482 | 482 | $widget_id = $original_callback_params[0]['widget_id']; |
| 483 | 483 | |
| 484 | - $original_callback = $wp_registered_widgets[ $widget_id ]['original_callback']; |
|
| 485 | - $wp_registered_widgets[ $widget_id ]['callback'] = $original_callback; |
|
| 484 | + $original_callback = $wp_registered_widgets[$widget_id]['original_callback']; |
|
| 485 | + $wp_registered_widgets[$widget_id]['callback'] = $original_callback; |
|
| 486 | 486 | |
| 487 | - $widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base; |
|
| 487 | + $widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base; |
|
| 488 | 488 | |
| 489 | 489 | $widget_classname = ''; |
| 490 | 490 | |
| 491 | - if ( is_callable( $original_callback ) ) { |
|
| 491 | + if (is_callable($original_callback)) { |
|
| 492 | 492 | ob_start(); |
| 493 | - call_user_func_array( $original_callback, $original_callback_params ); |
|
| 493 | + call_user_func_array($original_callback, $original_callback_params); |
|
| 494 | 494 | $widget_output = ob_get_clean(); |
| 495 | 495 | |
| 496 | - echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) ); |
|
| 496 | + echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id)); |
|
| 497 | 497 | } |
| 498 | 498 | } |
| 499 | 499 | |
| 500 | 500 | endif; |
| 501 | 501 | |
| 502 | -if ( ! function_exists( 'lsx_full_width_widget_output' ) ) : |
|
| 502 | +if ( ! function_exists('lsx_full_width_widget_output')) : |
|
| 503 | 503 | |
| 504 | 504 | /** |
| 505 | 505 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -507,12 +507,12 @@ discard block |
||
| 507 | 507 | * @package lsx |
| 508 | 508 | * @subpackage extras |
| 509 | 509 | */ |
| 510 | - function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) { |
|
| 511 | - if ( 'text' === $widget_id_base ) { |
|
| 512 | - if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) { |
|
| 513 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output ); |
|
| 514 | - } elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) { |
|
| 515 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output ); |
|
| 510 | + function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) { |
|
| 511 | + if ('text' === $widget_id_base) { |
|
| 512 | + if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) { |
|
| 513 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output); |
|
| 514 | + } elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) { |
|
| 515 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output); |
|
| 516 | 516 | } |
| 517 | 517 | } |
| 518 | 518 | |
@@ -521,4 +521,4 @@ discard block |
||
| 521 | 521 | |
| 522 | 522 | endif; |
| 523 | 523 | |
| 524 | -add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 ); |
|
| 524 | +add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3); |
|