@@ -60,12 +60,12 @@ |
||
| 60 | 60 | <strong><?php _e( 'Get your Tourism Establishment Online', 'lsx' ); ?></strong> |
| 61 | 61 | |
| 62 | 62 | <?php |
| 63 | - if(is_singular('landing-page')){ |
|
| 64 | - $email_address = get_post_meta(get_the_ID(),'email_address',true); |
|
| 65 | - if(false === $email_address){ |
|
| 63 | + if(is_singular('landing-page')){ |
|
| 64 | + $email_address = get_post_meta(get_the_ID(),'email_address',true); |
|
| 65 | + if(false === $email_address){ |
|
| 66 | 66 | $email_address = '[email protected]'; |
| 67 | 67 | } |
| 68 | - } ?> |
|
| 68 | + } ?> |
|
| 69 | 69 | |
| 70 | 70 | <span class="email-address"><?php _e( 'Questions? Email Us: ', 'lsx' ); ?><a href="mailto:<?php echo $email_address; ?>"><?php echo $email_address; ?></a></span> |
| 71 | 71 | </div> |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | |
| 23 | 23 | if('posts' == $show_on_front && is_home()){ |
| 24 | 24 | $sidebar = 'home'; |
| 25 | - }else{ |
|
| 25 | + } else{ |
|
| 26 | 26 | $sidebar = 'sidebar-1'; |
| 27 | 27 | } |
| 28 | 28 | } |
@@ -38,9 +38,12 @@ discard block |
||
| 38 | 38 | |
| 39 | 39 | <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); ?>" role="complementary"> |
| 40 | 40 | |
| 41 | - <?php else : ?> |
|
| 41 | + <?php else { |
|
| 42 | + : ?> |
|
| 42 | 43 | |
| 43 | - <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); ?>" role="complementary"> |
|
| 44 | + <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); |
|
| 45 | +} |
|
| 46 | +?>" role="complementary"> |
|
| 44 | 47 | |
| 45 | 48 | <?php endif ; ?> |
| 46 | 49 | |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | $layout = get_theme_mod('lsx_layout','2cr'); |
| 13 | 13 | if('posts' == $show_on_front && is_home()){ |
| 14 | 14 | $sidebar = 'home'; |
| 15 | - }else{ |
|
| 15 | + } else{ |
|
| 16 | 16 | $sidebar = 'sidebar-1'; |
| 17 | 17 | } |
| 18 | 18 | |
@@ -44,9 +44,12 @@ |
||
| 44 | 44 | |
| 45 | 45 | <?php lsx_paging_nav(); ?> |
| 46 | 46 | |
| 47 | - <?php else : ?> |
|
| 47 | + <?php else { |
|
| 48 | + : ?> |
|
| 48 | 49 | |
| 49 | - <?php get_template_part( 'content', 'none' ); ?> |
|
| 50 | + <?php get_template_part( 'content', 'none' ); |
|
| 51 | +} |
|
| 52 | +?> |
|
| 50 | 53 | |
| 51 | 54 | <?php endif; ?> |
| 52 | 55 | |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | if(has_nav_menu('footer-menu')){ |
| 26 | 26 | wp_nav_menu(array('theme_location' => 'footer-menu')); |
| 27 | 27 | } |
| 28 | - }else{ |
|
| 28 | + } else{ |
|
| 29 | 29 | if(has_nav_menu('footer_logged_in')){ |
| 30 | 30 | wp_nav_menu(array('theme_location' => 'footer_logged_in')); |
| 31 | 31 | } |
@@ -62,18 +62,20 @@ |
||
| 62 | 62 | */ |
| 63 | 63 | $attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); |
| 64 | 64 | foreach ( $attachments as $k => $attachment ) { |
| 65 | - if ( $attachment->ID == $post->ID ) |
|
| 66 | - break; |
|
| 65 | + if ( $attachment->ID == $post->ID ) { |
|
| 66 | + break; |
|
| 67 | + } |
|
| 67 | 68 | } |
| 68 | 69 | $k++; |
| 69 | 70 | // If there is more than 1 attachment in a gallery |
| 70 | 71 | if ( count( $attachments ) > 1 ) { |
| 71 | - if ( isset( $attachments[ $k ] ) ) |
|
| 72 | - // get the URL of the next image attachment |
|
| 72 | + if ( isset( $attachments[ $k ] ) ) { |
|
| 73 | + // get the URL of the next image attachment |
|
| 73 | 74 | $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); |
| 74 | - else |
|
| 75 | - // or get the URL of the first image attachment |
|
| 75 | + } else { |
|
| 76 | + // or get the URL of the first image attachment |
|
| 76 | 77 | $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); |
| 78 | + } |
|
| 77 | 79 | } else { |
| 78 | 80 | // or, if there's only 1 image, get the URL of the image |
| 79 | 81 | $next_attachment_url = wp_get_attachment_url(); |
@@ -31,20 +31,20 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | <div class="entry-meta"> |
| 33 | 33 | <?php |
| 34 | - $metadata = wp_get_attachment_metadata(); |
|
| 35 | - printf( wp_kses_post( '%1$s <span class="entry-date"><time class="entry-date" datetime="%2$s" pubdate>%3$s</time></span> %4$s <a href="%5$s">%6$s × %7$s</a> %8$s <a href="%9$s" title="%10$s" rel="gallery">%10$s</a>' ), |
|
| 36 | - esc_html__( 'Published', 'lsx' ), |
|
| 37 | - esc_attr( get_the_date( 'c' ) ), |
|
| 38 | - esc_html( get_the_date() ), |
|
| 39 | - esc_html__( 'at', 'lsx' ), |
|
| 40 | - esc_url( wp_get_attachment_url() ), |
|
| 41 | - esc_attr( $metadata['width'] ), |
|
| 42 | - esc_attr( $metadata['height'] ), |
|
| 43 | - esc_html__( 'in', 'lsx' ), |
|
| 44 | - esc_url( get_permalink( $post->post_parent ) ), |
|
| 45 | - get_the_title( $post->post_parent ) |
|
| 46 | - ); |
|
| 47 | - ?> |
|
| 34 | + $metadata = wp_get_attachment_metadata(); |
|
| 35 | + printf( wp_kses_post( '%1$s <span class="entry-date"><time class="entry-date" datetime="%2$s" pubdate>%3$s</time></span> %4$s <a href="%5$s">%6$s × %7$s</a> %8$s <a href="%9$s" title="%10$s" rel="gallery">%10$s</a>' ), |
|
| 36 | + esc_html__( 'Published', 'lsx' ), |
|
| 37 | + esc_attr( get_the_date( 'c' ) ), |
|
| 38 | + esc_html( get_the_date() ), |
|
| 39 | + esc_html__( 'at', 'lsx' ), |
|
| 40 | + esc_url( wp_get_attachment_url() ), |
|
| 41 | + esc_attr( $metadata['width'] ), |
|
| 42 | + esc_attr( $metadata['height'] ), |
|
| 43 | + esc_html__( 'in', 'lsx' ), |
|
| 44 | + esc_url( get_permalink( $post->post_parent ) ), |
|
| 45 | + get_the_title( $post->post_parent ) |
|
| 46 | + ); |
|
| 47 | + ?> |
|
| 48 | 48 | <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<span class="sep"> | </span> <span class="edit-link">', '</span>' ); ?> |
| 49 | 49 | </div><!-- .entry-meta --> |
| 50 | 50 | |
@@ -59,34 +59,34 @@ discard block |
||
| 59 | 59 | <div class="entry-attachment"> |
| 60 | 60 | <div class="attachment"> |
| 61 | 61 | <?php |
| 62 | - /** |
|
| 63 | - * Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery, |
|
| 64 | - * or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file |
|
| 65 | - */ |
|
| 66 | - $attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); |
|
| 67 | - foreach ( $attachments as $k => $attachment ) { |
|
| 68 | - if ( $attachment->ID == $post->ID ) |
|
| 69 | - break; |
|
| 70 | - } |
|
| 71 | - $k++; |
|
| 72 | - // If there is more than 1 attachment in a gallery |
|
| 73 | - if ( count( $attachments ) > 1 ) { |
|
| 74 | - if ( isset( $attachments[ $k ] ) ) |
|
| 75 | - // get the URL of the next image attachment |
|
| 76 | - $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); |
|
| 77 | - else |
|
| 78 | - // or get the URL of the first image attachment |
|
| 79 | - $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); |
|
| 80 | - } else { |
|
| 81 | - // or, if there's only 1 image, get the URL of the image |
|
| 82 | - $next_attachment_url = wp_get_attachment_url(); |
|
| 83 | - } |
|
| 84 | - ?> |
|
| 62 | + /** |
|
| 63 | + * Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery, |
|
| 64 | + * or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file |
|
| 65 | + */ |
|
| 66 | + $attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); |
|
| 67 | + foreach ( $attachments as $k => $attachment ) { |
|
| 68 | + if ( $attachment->ID == $post->ID ) |
|
| 69 | + break; |
|
| 70 | + } |
|
| 71 | + $k++; |
|
| 72 | + // If there is more than 1 attachment in a gallery |
|
| 73 | + if ( count( $attachments ) > 1 ) { |
|
| 74 | + if ( isset( $attachments[ $k ] ) ) |
|
| 75 | + // get the URL of the next image attachment |
|
| 76 | + $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); |
|
| 77 | + else |
|
| 78 | + // or get the URL of the first image attachment |
|
| 79 | + $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); |
|
| 80 | + } else { |
|
| 81 | + // or, if there's only 1 image, get the URL of the image |
|
| 82 | + $next_attachment_url = wp_get_attachment_url(); |
|
| 83 | + } |
|
| 84 | + ?> |
|
| 85 | 85 | |
| 86 | 86 | <a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php |
| 87 | - $attachment_size = apply_filters( 'shape_attachment_size', array( 1200, 1200 ) ); // Filterable image size. |
|
| 88 | - echo wp_get_attachment_image( $post->ID, $attachment_size ); |
|
| 89 | - ?></a> |
|
| 87 | + $attachment_size = apply_filters( 'shape_attachment_size', array( 1200, 1200 ) ); // Filterable image size. |
|
| 88 | + echo wp_get_attachment_image( $post->ID, $attachment_size ); |
|
| 89 | + ?></a> |
|
| 90 | 90 | </div><!-- .attachment --> |
| 91 | 91 | |
| 92 | 92 | <?php if ( ! empty( $post->post_excerpt ) ) : ?> |
@@ -97,15 +97,15 @@ discard block |
||
| 97 | 97 | </div><!-- .entry-attachment --> |
| 98 | 98 | |
| 99 | 99 | <?php |
| 100 | - the_content(); |
|
| 100 | + the_content(); |
|
| 101 | 101 | |
| 102 | - wp_link_pages( array( |
|
| 103 | - 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
| 104 | - 'after' => '</div></div>', |
|
| 105 | - 'link_before' => '<span>', |
|
| 106 | - 'link_after' => '</span>' |
|
| 107 | - ) ); |
|
| 108 | - ?> |
|
| 102 | + wp_link_pages( array( |
|
| 103 | + 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
| 104 | + 'after' => '</div></div>', |
|
| 105 | + 'link_before' => '<span>', |
|
| 106 | + 'link_after' => '</span>' |
|
| 107 | + ) ); |
|
| 108 | + ?> |
|
| 109 | 109 | |
| 110 | 110 | </div><!-- .entry-content --> |
| 111 | 111 | |
@@ -33,10 +33,10 @@ discard block |
||
| 33 | 33 | $show_on_front = get_option('show_on_front','posts'); |
| 34 | 34 | if('page' == $show_on_front){ |
| 35 | 35 | $archive_link = get_permalink(get_option('page_for_posts')); |
| 36 | - }else{ |
|
| 36 | + } else{ |
|
| 37 | 37 | $archive_link = home_url(); |
| 38 | 38 | } |
| 39 | - }else{ |
|
| 39 | + } else{ |
|
| 40 | 40 | $archive_link = get_post_format_link($format); |
| 41 | 41 | } |
| 42 | 42 | $format = lsx_translate_format_to_fontawesome($format); |
@@ -71,10 +71,12 @@ discard block |
||
| 71 | 71 | </div><!-- .entry-summary --> |
| 72 | 72 | <?php elseif ( has_post_format( array('link') ) ) : ?> |
| 73 | 73 | |
| 74 | - <?php else : ?> |
|
| 74 | + <?php else { |
|
| 75 | + : ?> |
|
| 75 | 76 | <div class="entry-content"> |
| 76 | 77 | <?php |
| 77 | 78 | the_content(); |
| 79 | +} |
|
| 78 | 80 | |
| 79 | 81 | wp_link_pages( array( |
| 80 | 82 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
@@ -1,5 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
| 2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
| 3 | + return; |
|
| 4 | +} |
|
| 5 | +// Exit if accessed directly |
|
| 3 | 6 | |
| 4 | 7 | /** |
| 5 | 8 | * Layout hooks |
@@ -62,7 +65,7 @@ discard block |
||
| 62 | 65 | $show_on_front = get_option('show_on_front'); |
| 63 | 66 | if('page' == $show_on_front){ |
| 64 | 67 | return lsx_layout_selector( 'main', 'home' ); |
| 65 | - }else{ |
|
| 68 | + } else{ |
|
| 66 | 69 | return lsx_layout_selector( 'main', 'site' ); |
| 67 | 70 | } |
| 68 | 71 | |
@@ -123,11 +123,11 @@ discard block |
||
| 123 | 123 | * @category portfolio |
| 124 | 124 | */ |
| 125 | 125 | function lsx_remove_single_related_posts() { |
| 126 | - if ( is_single() && class_exists( 'Jetpack_RelatedPosts' ) ) { |
|
| 127 | - $jprp = Jetpack_RelatedPosts::init(); |
|
| 128 | - $callback = array( $jprp, 'filter_add_target_to_dom' ); |
|
| 129 | - remove_filter( 'the_content', $callback, 40 ); |
|
| 130 | - } |
|
| 126 | + if ( is_single() && class_exists( 'Jetpack_RelatedPosts' ) ) { |
|
| 127 | + $jprp = Jetpack_RelatedPosts::init(); |
|
| 128 | + $callback = array( $jprp, 'filter_add_target_to_dom' ); |
|
| 129 | + remove_filter( 'the_content', $callback, 40 ); |
|
| 130 | + } |
|
| 131 | 131 | } |
| 132 | 132 | add_filter( 'wp', 'lsx_remove_single_related_posts', 20 ); |
| 133 | 133 | |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | if(is_array($types)){ |
| 312 | 312 | foreach ($types as $type) { |
| 313 | 313 | $content = '<li><a href="#" data-filter=".'.$type->slug.'">'; |
| 314 | - $content .= $type->name; |
|
| 314 | + $content .= $type->name; |
|
| 315 | 315 | $content .= '</a></li>'; |
| 316 | 316 | echo $content; |
| 317 | 317 | echo "\n"; |
@@ -243,14 +243,13 @@ discard block |
||
| 243 | 243 | |
| 244 | 244 | $meta_value = get_post_meta( $post_id, $meta_key, true ); |
| 245 | 245 | |
| 246 | - if ( $new_meta_value && '' == $meta_value ) |
|
| 247 | - add_post_meta( $post_id, $meta_key, $new_meta_value, true ); |
|
| 248 | - |
|
| 249 | - elseif ( $new_meta_value && $new_meta_value != $meta_value ) |
|
| 250 | - update_post_meta( $post_id, $meta_key, $new_meta_value ); |
|
| 251 | - |
|
| 252 | - elseif ( '' == $new_meta_value && $meta_value ) |
|
| 253 | - delete_post_meta( $post_id, $meta_key, $meta_value ); |
|
| 246 | + if ( $new_meta_value && '' == $meta_value ) { |
|
| 247 | + add_post_meta( $post_id, $meta_key, $new_meta_value, true ); |
|
| 248 | + } elseif ( $new_meta_value && $new_meta_value != $meta_value ) { |
|
| 249 | + update_post_meta( $post_id, $meta_key, $new_meta_value ); |
|
| 250 | + } elseif ( '' == $new_meta_value && $meta_value ) { |
|
| 251 | + delete_post_meta( $post_id, $meta_key, $meta_value ); |
|
| 252 | + } |
|
| 254 | 253 | } |
| 255 | 254 | } |
| 256 | 255 | |
@@ -402,7 +401,7 @@ discard block |
||
| 402 | 401 | |
| 403 | 402 | if('jetpack-portfolio' == get_post_type()){ |
| 404 | 403 | get_template_part( 'content', 'portfolio' ); |
| 405 | - }else{ |
|
| 404 | + } else{ |
|
| 406 | 405 | get_template_part( 'content', get_post_type() ); |
| 407 | 406 | } |
| 408 | 407 | } |