| @@ -5,35 +5,35 @@ discard block | ||
| 5 | 5 | * @package lsx | 
| 6 | 6 | */ | 
| 7 | 7 | |
| 8 | -if ( post_password_required() ) { | |
| 8 | +if (post_password_required()) { | |
| 9 | 9 | return; | 
| 10 | 10 | } | 
| 11 | 11 | |
| 12 | 12 | $commenter = wp_get_current_commenter(); | 
| 13 | -$req = get_option( 'require_name_email' ); | |
| 14 | -$aria_req = ( $req ? " aria-required='true'" : '' ); | |
| 15 | -$html_req = ( $req ? " required='required'" : '' ); | |
| 13 | +$req       = get_option('require_name_email'); | |
| 14 | +$aria_req = ($req ? " aria-required='true'" : ''); | |
| 15 | +$html_req = ($req ? " required='required'" : ''); | |
| 16 | 16 | |
| 17 | 17 | $comment_form_args = array( | 
| 18 | - 'comment_field' => '<p class="comment-form-comment"><textarea placeholder="' . esc_html__( 'Comment', 'lsx' ) . '" id="comment" class="form-control" name="comment" cols="45" rows="8"' . $aria_req . $html_req . '></textarea></p>', | |
| 18 | +	'comment_field' => '<p class="comment-form-comment"><textarea placeholder="' . esc_html__('Comment', 'lsx') . '" id="comment" class="form-control" name="comment" cols="45" rows="8"' . $aria_req . $html_req . '></textarea></p>', | |
| 19 | 19 | |
| 20 | 20 | 'fields' => array( | 
| 21 | - 'author' => '<p class="comment-form-author"><label for="author">' . esc_html__( 'Name', 'lsx' ) . '</label> ' . | |
| 22 | - ( $req ? '<span class="required">*</span>' : '' ) . | |
| 23 | - '<input class="form-control" placeholder="' . esc_html__( 'Name', 'lsx' ) . '" id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . $html_req . '></p>', | |
| 21 | +		'author' => '<p class="comment-form-author"><label for="author">' . esc_html__('Name', 'lsx') . '</label> ' . | |
| 22 | + ($req ? '<span class="required">*</span>' : '') . | |
| 23 | +			'<input class="form-control" placeholder="' . esc_html__('Name', 'lsx') . '" id="author" name="author" type="text" value="' . esc_attr($commenter['comment_author']) . '" size="30"' . $aria_req . $html_req . '></p>', | |
| 24 | 24 | |
| 25 | - 'email' => '<p class="comment-form-email"><label for="email">' . esc_html__( 'Email', 'lsx' ) . '</label> ' . | |
| 26 | - ( $req ? '<span class="required">*</span>' : '' ) . | |
| 27 | - '<input class="form-control" placeholder="' . esc_html__( 'Email', 'lsx' ) . '" id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . $html_req . '></p>', | |
| 25 | +		'email' => '<p class="comment-form-email"><label for="email">' . esc_html__('Email', 'lsx') . '</label> ' . | |
| 26 | + ($req ? '<span class="required">*</span>' : '') . | |
| 27 | +			'<input class="form-control" placeholder="' . esc_html__('Email', 'lsx') . '" id="email" name="email" type="text" value="' . esc_attr($commenter['comment_author_email']) . '" size="30"' . $aria_req . $html_req . '></p>', | |
| 28 | 28 | |
| 29 | - 'url' => '<p class="comment-form-url"><label for="url">' . esc_html__( 'Website', 'lsx' ) . '</label>' . | |
| 30 | - '<input class="form-control" placeholder="' . esc_html__( 'Website', 'lsx' ) . '" id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30"></p>', | |
| 29 | +		'url' => '<p class="comment-form-url"><label for="url">' . esc_html__('Website', 'lsx') . '</label>' . | |
| 30 | +			'<input class="form-control" placeholder="' . esc_html__('Website', 'lsx') . '" id="url" name="url" type="text" value="' . esc_attr($commenter['comment_author_url']) . '" size="30"></p>', | |
| 31 | 31 | ), | 
| 32 | 32 | ); | 
| 33 | 33 | |
| 34 | -comment_form( $comment_form_args ); | |
| 34 | +comment_form($comment_form_args); | |
| 35 | 35 | |
| 36 | -if ( have_comments() ) : ?> | |
| 36 | +if (have_comments()) : ?> | |
| 37 | 37 | |
| 38 | 38 | <?php lsx_comments_before(); ?> | 
| 39 | 39 | |
| @@ -42,23 +42,23 @@ discard block | ||
| 42 | 42 | <?php | 
| 43 | 43 | $comments_number = get_comments_number(); | 
| 44 | 44 | |
| 45 | -				if ( '1' === $comments_number ) { | |
| 45 | +				if ('1' === $comments_number) { | |
| 46 | 46 | printf( | 
| 47 | 47 | /* Translators: %s: post title */ | 
| 48 | - esc_html( _x( 'One Response to “%s”', 'lsx' ) ), | |
| 48 | +						esc_html(_x('One Response to “%s”', 'lsx')), | |
| 49 | 49 | get_the_title() | 
| 50 | 50 | ); | 
| 51 | 51 |  				} else { | 
| 52 | 52 | printf( | 
| 53 | 53 | /* Translators: 1: number of comments, 2: post title */ | 
| 54 | - esc_html( _nx( | |
| 54 | + esc_html(_nx( | |
| 55 | 55 | '%1$s Response to “%2$s”', | 
| 56 | 56 | '%1$s Responses to “%2$s”', | 
| 57 | 57 | $comments_number, | 
| 58 | 58 | 'comments.php', | 
| 59 | 59 | 'lsx' | 
| 60 | - ) ), | |
| 61 | - esc_html( number_format_i18n( $comments_number ) ), | |
| 60 | + )), | |
| 61 | + esc_html(number_format_i18n($comments_number)), | |
| 62 | 62 | get_the_title() | 
| 63 | 63 | ); | 
| 64 | 64 | } | 
| @@ -67,31 +67,31 @@ discard block | ||
| 67 | 67 | |
| 68 | 68 | <ol class="media-list"> | 
| 69 | 69 | <?php | 
| 70 | - wp_list_comments( array( | |
| 70 | + wp_list_comments(array( | |
| 71 | 71 | 'walker' => new LSX_Walker_Comment, | 
| 72 | - ) ); | |
| 72 | + )); | |
| 73 | 73 | ?> | 
| 74 | 74 | </ol> | 
| 75 | 75 | |
| 76 | 76 | <?php | 
| 77 | 77 | $comment_pages_count = get_comment_pages_count(); | 
| 78 | - if ( $comment_pages_count > 1 && get_option( 'page_comments' ) ) : ?> | |
| 78 | +			if ($comment_pages_count > 1 && get_option('page_comments')) : ?> | |
| 79 | 79 | <nav> | 
| 80 | 80 | <ul class="pager"> | 
| 81 | - <?php if ( get_previous_comments_link() ) : ?> | |
| 82 | - <li class="previous"><?php previous_comments_link( esc_html__( '← Older comments', 'lsx' ) ); ?></li> | |
| 81 | + <?php if (get_previous_comments_link()) : ?> | |
| 82 | +						<li class="previous"><?php previous_comments_link(esc_html__('← Older comments', 'lsx')); ?></li> | |
| 83 | 83 | <?php endif; ?> | 
| 84 | 84 | |
| 85 | - <?php if ( get_next_comments_link() ) : ?> | |
| 86 | - <li class="next"><?php next_comments_link( esc_html__( 'Newer comments →', 'lsx' ) ); ?></li> | |
| 85 | + <?php if (get_next_comments_link()) : ?> | |
| 86 | +						<li class="next"><?php next_comments_link(esc_html__('Newer comments →', 'lsx')); ?></li> | |
| 87 | 87 | <?php endif; ?> | 
| 88 | 88 | </ul> | 
| 89 | 89 | </nav> | 
| 90 | 90 | <?php endif; ?> | 
| 91 | 91 | |
| 92 | - <?php if ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) : ?> | |
| 92 | + <?php if ( ! comments_open() && ! is_page() && post_type_supports(get_post_type(), 'comments')) : ?> | |
| 93 | 93 | <div class="alert alert-warning"> | 
| 94 | - <?php esc_html_e( 'Comments are closed.', 'lsx' ); ?> | |
| 94 | +				<?php esc_html_e('Comments are closed.', 'lsx'); ?> | |
| 95 | 95 | </div> | 
| 96 | 96 | <?php endif; ?> | 
| 97 | 97 | </section><!-- /#comments --> | 
| @@ -100,11 +100,11 @@ discard block | ||
| 100 | 100 | |
| 101 | 101 | <?php endif; ?> | 
| 102 | 102 | |
| 103 | -<?php if ( ! have_comments() && ! comments_open() && post_type_supports( get_post_type(), 'comments' ) ) : ?> | |
| 103 | +<?php if ( ! have_comments() && ! comments_open() && post_type_supports(get_post_type(), 'comments')) : ?> | |
| 104 | 104 | |
| 105 | 105 | <section id="comments"> | 
| 106 | 106 | <div class="alert alert-warning"> | 
| 107 | - <?php esc_html_e( 'Comments are closed.', 'lsx' ); ?> | |
| 107 | +			<?php esc_html_e('Comments are closed.', 'lsx'); ?> | |
| 108 | 108 | </div> | 
| 109 | 109 | </section><!-- /#comments --> | 
| 110 | 110 | |
| @@ -5,32 +5,32 @@ | ||
| 5 | 5 | * @package lsx | 
| 6 | 6 | */ | 
| 7 | 7 | |
| 8 | -$show_on_front = get_option( 'show_on_front' ); | |
| 8 | +$show_on_front = get_option('show_on_front'); | |
| 9 | 9 | |
| 10 | -$layout = get_theme_mod( 'lsx_layout', '2cr' ); | |
| 11 | -$layout = apply_filters( 'lsx_layout', $layout ); | |
| 10 | +$layout = get_theme_mod('lsx_layout', '2cr'); | |
| 11 | +$layout = apply_filters('lsx_layout', $layout); | |
| 12 | 12 | |
| 13 | -if ( 'posts' === $show_on_front && is_home() ) { | |
| 13 | +if ('posts' === $show_on_front && is_home()) { | |
| 14 | 14 | $sidebar = 'home'; | 
| 15 | 15 |  } else { | 
| 16 | 16 | $sidebar = 'sidebar-1'; | 
| 17 | 17 | } | 
| 18 | 18 | |
| 19 | -if ( '1c' !== $layout ) : ?> | |
| 19 | +if ('1c' !== $layout) : ?> | |
| 20 | 20 | |
| 21 | 21 | <?php lsx_sidebars_before(); ?> | 
| 22 | 22 | |
| 23 | - <div id="secondary" class="widget-area <?php echo esc_attr( lsx_sidebar_class() ); ?>" role="complementary"> | |
| 23 | + <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); ?>" role="complementary"> | |
| 24 | 24 | |
| 25 | 25 | <?php lsx_sidebar_top(); ?> | 
| 26 | 26 | |
| 27 | - <h2><?php esc_attr_e( 'Categories', 'lsx' ); ?></h2> | |
| 27 | +		<h2><?php esc_attr_e('Categories', 'lsx'); ?></h2> | |
| 28 | 28 | |
| 29 | 29 | <aside id="categories" class="widget widget_categories"> | 
| 30 | 30 | <?php | 
| 31 | - echo wp_tag_cloud( array( | |
| 31 | + echo wp_tag_cloud(array( | |
| 32 | 32 | 'taxonomy' => 'category', | 
| 33 | - ) ); | |
| 33 | + )); | |
| 34 | 34 | ?> | 
| 35 | 35 | </aside> | 
| 36 | 36 | |
| @@ -5,56 +5,56 @@ | ||
| 5 | 5 | * @package lsx | 
| 6 | 6 | */ | 
| 7 | 7 | |
| 8 | -$sidebar_enabled = apply_filters( 'lsx_sidebar_enable', true ); | |
| 8 | +$sidebar_enabled = apply_filters('lsx_sidebar_enable', true); | |
| 9 | 9 | |
| 10 | -if ( true !== $sidebar_enabled ) { | |
| 10 | +if (true !== $sidebar_enabled) { | |
| 11 | 11 | return true; | 
| 12 | 12 | } | 
| 13 | 13 | |
| 14 | -$show_on_front = get_option( 'show_on_front' ); | |
| 14 | +$show_on_front = get_option('show_on_front'); | |
| 15 | 15 | |
| 16 | -if ( 'page' === $show_on_front && is_front_page() ) { | |
| 16 | +if ('page' === $show_on_front && is_front_page()) { | |
| 17 | 17 | $layout = '1c'; | 
| 18 | 18 | $sidebar = 'home'; | 
| 19 | 19 |  } else { | 
| 20 | - $layout = get_theme_mod( 'lsx_layout', '2cr' ); | |
| 21 | - $layout = apply_filters( 'lsx_layout', $layout ); | |
| 20 | +	$layout = get_theme_mod('lsx_layout', '2cr'); | |
| 21 | +	$layout = apply_filters('lsx_layout', $layout); | |
| 22 | 22 | |
| 23 | -	if ( 'posts' === $show_on_front && is_home() ) { | |
| 23 | +	if ('posts' === $show_on_front && is_home()) { | |
| 24 | 24 | $sidebar = 'home'; | 
| 25 | 25 |  	} else { | 
| 26 | 26 | $sidebar = 'sidebar-1'; | 
| 27 | 27 | } | 
| 28 | 28 | } | 
| 29 | 29 | |
| 30 | -if ( '1c' !== $layout ) : ?> | |
| 30 | +if ('1c' !== $layout) : ?> | |
| 31 | 31 | |
| 32 | 32 | <?php lsx_sidebars_before(); ?> | 
| 33 | 33 | |
| 34 | - <div id="secondary" class="widget-area <?php echo esc_attr( lsx_sidebar_class() ); ?>" role="complementary"> | |
| 34 | + <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); ?>" role="complementary"> | |
| 35 | 35 | |
| 36 | 36 | <?php lsx_sidebar_top(); ?> | 
| 37 | 37 | |
| 38 | - <?php if ( ! dynamic_sidebar( $sidebar ) ) : ?> | |
| 38 | + <?php if ( ! dynamic_sidebar($sidebar)) : ?> | |
| 39 | 39 | |
| 40 | 40 | <aside id="search" class="widget widget_search"> | 
| 41 | 41 | <?php get_search_form(); ?> | 
| 42 | 42 | </aside> | 
| 43 | 43 | |
| 44 | 44 | <aside id="archives" class="widget"> | 
| 45 | - <h1 class="widget-title"><?php esc_attr_e( 'Archives', 'lsx' ); ?></h1> | |
| 45 | +				<h1 class="widget-title"><?php esc_attr_e('Archives', 'lsx'); ?></h1> | |
| 46 | 46 | |
| 47 | 47 | <ul> | 
| 48 | 48 | <?php | 
| 49 | - wp_get_archives( array( | |
| 49 | + wp_get_archives(array( | |
| 50 | 50 | 'type' => 'monthly', | 
| 51 | - ) ); | |
| 51 | + )); | |
| 52 | 52 | ?> | 
| 53 | 53 | </ul> | 
| 54 | 54 | </aside> | 
| 55 | 55 | |
| 56 | 56 | <aside id="meta" class="widget"> | 
| 57 | - <h1 class="widget-title"><?php esc_attr_e( 'Meta', 'lsx' ); ?></h1> | |
| 57 | +				<h1 class="widget-title"><?php esc_attr_e('Meta', 'lsx'); ?></h1> | |
| 58 | 58 | |
| 59 | 59 | <ul> | 
| 60 | 60 | <?php wp_register(); ?> | 
| @@ -5,11 +5,11 @@ discard block | ||
| 5 | 5 | * @package lsx | 
| 6 | 6 | */ | 
| 7 | 7 | |
| 8 | -if ( ! defined( 'ABSPATH' ) ) { | |
| 8 | +if ( ! defined('ABSPATH')) { | |
| 9 | 9 | exit; | 
| 10 | 10 | } | 
| 11 | 11 | |
| 12 | -define( 'LSX_VERSION', '2.0.0' ); | |
| 12 | +define('LSX_VERSION', '2.0.0'); | |
| 13 | 13 | |
| 14 | 14 | require get_template_directory() . '/includes/config.php'; | 
| 15 | 15 | require get_template_directory() . '/includes/classes/class-lsx-theme-customizer.php'; | 
| @@ -30,6 +30,6 @@ discard block | ||
| 30 | 30 | require get_template_directory() . '/includes/extras.php'; | 
| 31 | 31 | require get_template_directory() . '/includes/welcome.php'; | 
| 32 | 32 | |
| 33 | -if ( class_exists( 'WooCommerce' ) ) { | |
| 33 | +if (class_exists('WooCommerce')) { | |
| 34 | 34 | require get_template_directory() . '/includes/woocommerce.php'; | 
| 35 | 35 | } | 
| @@ -8,23 +8,23 @@ | ||
| 8 | 8 | |
| 9 | 9 | <section class="no-results not-found"> | 
| 10 | 10 | <header class="page-header"> | 
| 11 | - <h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'lsx' ); ?></h1> | |
| 11 | +		<h1 class="page-title"><?php esc_html_e('Nothing Found', 'lsx'); ?></h1> | |
| 12 | 12 | </header><!-- .page-header --> | 
| 13 | 13 | |
| 14 | 14 | <div class="page-content"> | 
| 15 | 15 | |
| 16 | - <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?> | |
| 16 | +		<?php if (is_home() && current_user_can('publish_posts')) : ?> | |
| 17 | 17 | |
| 18 | - <p><?php esc_html_e( 'Ready to publish your first post?', 'lsx' ); ?> <a href="<?php echo esc_url( admin_url( 'post-new.php' ) ); ?>"><?php esc_html_e( 'Get started here', 'lsx' ); ?></a></p> | |
| 18 | +			<p><?php esc_html_e('Ready to publish your first post?', 'lsx'); ?> <a href="<?php echo esc_url(admin_url('post-new.php')); ?>"><?php esc_html_e('Get started here', 'lsx'); ?></a></p> | |
| 19 | 19 | |
| 20 | - <?php elseif ( is_search() ) : ?> | |
| 20 | + <?php elseif (is_search()) : ?> | |
| 21 | 21 | |
| 22 | - <p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'lsx' ); ?></p> | |
| 22 | +			<p><?php esc_html_e('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'lsx'); ?></p> | |
| 23 | 23 | <?php get_search_form(); ?> | 
| 24 | 24 | |
| 25 | 25 | <?php else : ?> | 
| 26 | 26 | |
| 27 | - <p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx' ); ?></p> | |
| 27 | +			<p><?php esc_html_e('It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx'); ?></p> | |
| 28 | 28 | <?php get_search_form(); ?> | 
| 29 | 29 | |
| 30 | 30 | <?php endif; ?> | 
| @@ -16,16 +16,16 @@ | ||
| 16 | 16 | <?php | 
| 17 | 17 | the_content(); | 
| 18 | 18 | |
| 19 | - wp_link_pages( array( | |
| 19 | + wp_link_pages(array( | |
| 20 | 20 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', | 
| 21 | 21 | 'after' => '</div></div>', | 
| 22 | 22 | 'link_before' => '<span>', | 
| 23 | 23 | 'link_after' => '</span>', | 
| 24 | - ) ); | |
| 24 | + )); | |
| 25 | 25 | ?> | 
| 26 | 26 | </div><!-- .entry-content --> | 
| 27 | 27 | |
| 28 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?> | |
| 28 | +	<?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?> | |
| 29 | 29 | |
| 30 | 30 | <?php lsx_entry_bottom(); ?> | 
| 31 | 31 | |
| @@ -24,38 +24,38 @@ | ||
| 24 | 24 | <?php | 
| 25 | 25 | the_content(); | 
| 26 | 26 | |
| 27 | - wp_link_pages( array( | |
| 27 | + wp_link_pages(array( | |
| 28 | 28 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', | 
| 29 | 29 | 'after' => '</div></div>', | 
| 30 | 30 | 'link_before' => '<span>', | 
| 31 | 31 | 'link_after' => '</span>', | 
| 32 | - ) ); | |
| 32 | + )); | |
| 33 | 33 | ?> | 
| 34 | 34 | </div><!-- .entry-content --> | 
| 35 | 35 | |
| 36 | 36 | <footer class="footer-meta clearfix"> | 
| 37 | - <?php if ( has_tag() || class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : ?> | |
| 37 | +		<?php if (has_tag() || class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) : ?> | |
| 38 | 38 | <div class="post-tags-wrapper"> | 
| 39 | 39 | <?php lsx_content_post_tags(); ?> | 
| 40 | 40 | |
| 41 | 41 | <?php | 
| 42 | -					if ( class_exists( 'LSX_Sharing' ) ) { | |
| 42 | +					if (class_exists('LSX_Sharing')) { | |
| 43 | 43 | lsx_content_sharing(); | 
| 44 | 44 |  					} else { | 
| 45 | -						if ( function_exists( 'sharing_display' ) ) { | |
| 46 | - sharing_display( '', true ); | |
| 45 | +						if (function_exists('sharing_display')) { | |
| 46 | +							sharing_display('', true); | |
| 47 | 47 | } | 
| 48 | 48 | |
| 49 | -						if ( class_exists( 'Jetpack_Likes' ) ) { | |
| 49 | +						if (class_exists('Jetpack_Likes')) { | |
| 50 | 50 | $custom_likes = new Jetpack_Likes; | 
| 51 | - echo wp_kses_post( $custom_likes->post_likes( '' ) ); | |
| 51 | +							echo wp_kses_post($custom_likes->post_likes('')); | |
| 52 | 52 | } | 
| 53 | 53 | } | 
| 54 | 54 | ?> | 
| 55 | 55 | <?php endif ?> | 
| 56 | 56 | </footer><!-- .footer-meta --> | 
| 57 | 57 | |
| 58 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?> | |
| 58 | +	<?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?> | |
| 59 | 59 | |
| 60 | 60 | <?php lsx_entry_bottom(); ?> | 
| 61 | 61 | |
| @@ -9,37 +9,37 @@ discard block | ||
| 9 | 9 | <?php lsx_entry_before(); ?> | 
| 10 | 10 | |
| 11 | 11 | <?php | 
| 12 | - $no_thumb_post_formats = array( 'audio', 'gallery', 'image', 'link', 'quote', 'video' ); | |
| 13 | - $has_thumb = has_post_thumbnail() && ! has_post_format( $no_thumb_post_formats ); | |
| 12 | +	$no_thumb_post_formats = array('audio', 'gallery', 'image', 'link', 'quote', 'video'); | |
| 13 | + $has_thumb = has_post_thumbnail() && ! has_post_format($no_thumb_post_formats); | |
| 14 | 14 | |
| 15 | -	if ( $has_thumb ) { | |
| 15 | +	if ($has_thumb) { | |
| 16 | 16 | $thumb_class = 'has-thumb'; | 
| 17 | 17 |  	} else { | 
| 18 | 18 | $thumb_class = 'no-thumb'; | 
| 19 | 19 | } | 
| 20 | 20 | |
| 21 | - $blog_layout = apply_filters( 'lsx_blog_layout', 'default' ); | |
| 21 | +	$blog_layout = apply_filters('lsx_blog_layout', 'default'); | |
| 22 | 22 | |
| 23 | 23 | $image_class = ''; | 
| 24 | 24 | |
| 25 | - $thumbnail_id = get_post_thumbnail_id( get_the_ID() ); | |
| 26 | - $image_arr = wp_get_attachment_image_src( $thumbnail_id, 'lsx-thumbnail-single' ); | |
| 25 | + $thumbnail_id = get_post_thumbnail_id(get_the_ID()); | |
| 26 | + $image_arr = wp_get_attachment_image_src($thumbnail_id, 'lsx-thumbnail-single'); | |
| 27 | 27 | |
| 28 | -	if ( is_array( $image_arr ) ) { | |
| 28 | +	if (is_array($image_arr)) { | |
| 29 | 29 | $image_src = $image_arr[0]; | 
| 30 | 30 | } | 
| 31 | 31 | ?> | 
| 32 | 32 | |
| 33 | -<article id="post-<?php the_ID(); ?>" <?php post_class( $thumb_class ); ?>> | |
| 33 | +<article id="post-<?php the_ID(); ?>" <?php post_class($thumb_class); ?>> | |
| 34 | 34 | <?php lsx_entry_top(); ?> | 
| 35 | 35 | |
| 36 | 36 | <div class="entry-layout"> | 
| 37 | 37 | <div class="entry-layout-content entry-layout-content-<?php echo has_post_thumbnail() ? '67' : '100'; ?>"> | 
| 38 | 38 | <header class="entry-header"> | 
| 39 | - <?php if ( $has_thumb ) : ?> | |
| 40 | - <div class="entry-image <?php echo esc_attr( $image_class ); ?>"> | |
| 39 | + <?php if ($has_thumb) : ?> | |
| 40 | + <div class="entry-image <?php echo esc_attr($image_class); ?>"> | |
| 41 | 41 | <a class="thumbnail" href="<?php the_permalink(); ?>"> | 
| 42 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> | |
| 42 | +							<?php lsx_thumbnail('lsx-thumbnail-single'); ?> | |
| 43 | 43 | </a> | 
| 44 | 44 | </div> | 
| 45 | 45 | <?php endif; ?> | 
| @@ -51,53 +51,53 @@ discard block | ||
| 51 | 51 | <?php | 
| 52 | 52 | $format = get_post_format(); | 
| 53 | 53 | |
| 54 | -					if ( false === $format ) { | |
| 54 | +					if (false === $format) { | |
| 55 | 55 | $format = 'standard'; | 
| 56 | - $show_on_front = get_option( 'show_on_front', 'posts' ); | |
| 56 | +						$show_on_front = get_option('show_on_front', 'posts'); | |
| 57 | 57 | |
| 58 | -						if ( 'page' === $show_on_front ) { | |
| 59 | - $archive_link = get_permalink( get_option( 'page_for_posts' ) ); | |
| 58 | +						if ('page' === $show_on_front) { | |
| 59 | +							$archive_link = get_permalink(get_option('page_for_posts')); | |
| 60 | 60 |  						} else { | 
| 61 | 61 | $archive_link = home_url(); | 
| 62 | 62 | } | 
| 63 | 63 |  					} else { | 
| 64 | - $archive_link = get_post_format_link( $format ); | |
| 64 | + $archive_link = get_post_format_link($format); | |
| 65 | 65 | } | 
| 66 | 66 | |
| 67 | - $format = lsx_translate_format_to_fontawesome( $format ); | |
| 67 | + $format = lsx_translate_format_to_fontawesome($format); | |
| 68 | 68 | ?> | 
| 69 | 69 | |
| 70 | 70 | <h1 class="entry-title"> | 
| 71 | - <?php if ( has_post_thumbnail() ) : ?> | |
| 72 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ); ?>"></a> | |
| 71 | + <?php if (has_post_thumbnail()) : ?> | |
| 72 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr($format); ?>"></a> | |
| 73 | 73 | <?php else : ?> | 
| 74 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> | |
| 74 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link fa fa-<?php echo esc_attr($format); ?>"></a> | |
| 75 | 75 | <?php endif; ?> | 
| 76 | 76 | |
| 77 | - <?php if ( has_post_format( array( 'link' ) ) ) : ?> | |
| 78 | - <a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> | |
| 77 | +					<?php if (has_post_format(array('link'))) : ?> | |
| 78 | + <a href="<?php echo esc_url(lsx_get_my_url()); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> | |
| 79 | 79 | <?php else : ?> | 
| 80 | 80 | <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> | 
| 81 | 81 | <?php endif; ?> | 
| 82 | 82 | |
| 83 | - <?php if ( is_sticky() ) : ?> | |
| 84 | - <span class="label label-default label-sticky"><?php esc_html_e( 'Featured', 'lsx' ); ?></span> | |
| 83 | + <?php if (is_sticky()) : ?> | |
| 84 | +						<span class="label label-default label-sticky"><?php esc_html_e('Featured', 'lsx'); ?></span> | |
| 85 | 85 | <?php endif; ?> | 
| 86 | 86 | </h1> | 
| 87 | 87 | </header><!-- .entry-header --> | 
| 88 | 88 | |
| 89 | - <?php if ( has_post_format( array( 'quote' ) ) || apply_filters( 'lsx_blog_display_text_on_list', true ) ) : ?> | |
| 89 | +			<?php if (has_post_format(array('quote')) || apply_filters('lsx_blog_display_text_on_list', true)) : ?> | |
| 90 | 90 | |
| 91 | - <?php if ( ! has_post_format( array( 'video', 'audio', 'quote', 'link' ) ) && ! apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> | |
| 91 | +				<?php if ( ! has_post_format(array('video', 'audio', 'quote', 'link')) && ! apply_filters('lsx_blog_force_content_on_list', false)) : ?> | |
| 92 | 92 | |
| 93 | 93 | <div class="entry-summary"> | 
| 94 | 94 | <?php the_excerpt(); ?> | 
| 95 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<p class="edit-link">', '</p>' ); ?> | |
| 95 | +						<?php edit_post_link(esc_html__('Edit', 'lsx'), '<p class="edit-link">', '</p>'); ?> | |
| 96 | 96 | </div><!-- .entry-summary --> | 
| 97 | 97 | |
| 98 | - <?php elseif ( has_post_format( array( 'link' ) ) ) : ?> | |
| 98 | +				<?php elseif (has_post_format(array('link'))) : ?> | |
| 99 | 99 | |
| 100 | - <?php elseif ( apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> | |
| 100 | +				<?php elseif (apply_filters('lsx_blog_force_content_on_list', false)) : ?> | |
| 101 | 101 | |
| 102 | 102 | <div class="entry-content"> | 
| 103 | 103 | <?php the_content(); ?> | 
| @@ -109,12 +109,12 @@ discard block | ||
| 109 | 109 | <?php | 
| 110 | 110 | the_content(); | 
| 111 | 111 | |
| 112 | - wp_link_pages( array( | |
| 112 | + wp_link_pages(array( | |
| 113 | 113 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', | 
| 114 | 114 | 'after' => '</div></div>', | 
| 115 | 115 | 'link_before' => '<span>', | 
| 116 | 116 | 'link_after' => '</span>', | 
| 117 | - ) ); | |
| 117 | + )); | |
| 118 | 118 | ?> | 
| 119 | 119 | </div><!-- .entry-content --> | 
| 120 | 120 | |
| @@ -131,23 +131,23 @@ discard block | ||
| 131 | 131 | |
| 132 | 132 | <?php lsx_content_post_tags(); ?> | 
| 133 | 133 | |
| 134 | - <?php if ( comments_open() && ! empty( $comments_number ) ) : ?> | |
| 134 | + <?php if (comments_open() && ! empty($comments_number)) : ?> | |
| 135 | 135 | <div class="post-comments"> | 
| 136 | 136 | <a href="<?php the_permalink(); ?>#comments"> | 
| 137 | 137 | <?php | 
| 138 | -								if ( '1' === $comments_number ) { | |
| 139 | - echo esc_html( _x( 'One Comment', 'lsx' ) ); | |
| 138 | +								if ('1' === $comments_number) { | |
| 139 | +									echo esc_html(_x('One Comment', 'lsx')); | |
| 140 | 140 |  								} else { | 
| 141 | 141 | printf( | 
| 142 | 142 | /* Translators: %s: number of comments */ | 
| 143 | - esc_html( _nx( | |
| 143 | + esc_html(_nx( | |
| 144 | 144 | '%s Comment', | 
| 145 | 145 | '%s Comments', | 
| 146 | 146 | $comments_number, | 
| 147 | 147 | 'content.php', | 
| 148 | 148 | 'lsx' | 
| 149 | - ) ), | |
| 150 | - esc_html( number_format_i18n( $comments_number ) ) | |
| 149 | + )), | |
| 150 | + esc_html(number_format_i18n($comments_number)) | |
| 151 | 151 | ); | 
| 152 | 152 | } | 
| 153 | 153 | ?> | 
| @@ -157,11 +157,11 @@ discard block | ||
| 157 | 157 | </div> | 
| 158 | 158 | </div> | 
| 159 | 159 | |
| 160 | - <?php if ( has_post_thumbnail() ) : ?> | |
| 160 | + <?php if (has_post_thumbnail()) : ?> | |
| 161 | 161 | |
| 162 | 162 | <div class="entry-image hidden-xs"> | 
| 163 | - <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url( $image_src ); ?>);"> | |
| 164 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> | |
| 163 | + <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url($image_src); ?>);"> | |
| 164 | +					<?php lsx_thumbnail('lsx-thumbnail-single'); ?> | |
| 165 | 165 | </a> | 
| 166 | 166 | </div> | 
| 167 | 167 | |
| @@ -9,7 +9,7 @@ discard block | ||
| 9 | 9 | |
| 10 | 10 | <?php lsx_content_wrap_before(); ?> | 
| 11 | 11 | |
| 12 | -<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> | |
| 12 | +<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> | |
| 13 | 13 | |
| 14 | 14 | <?php lsx_content_before(); ?> | 
| 15 | 15 | |
| @@ -17,15 +17,15 @@ discard block | ||
| 17 | 17 | |
| 18 | 18 | <?php lsx_content_top(); ?> | 
| 19 | 19 | |
| 20 | - <?php if ( have_posts() ) : ?> | |
| 20 | + <?php if (have_posts()) : ?> | |
| 21 | 21 | |
| 22 | - <?php while ( have_posts() ) : the_post(); ?> | |
| 22 | + <?php while (have_posts()) : the_post(); ?> | |
| 23 | 23 | |
| 24 | 24 | <?php | 
| 25 | -					if ( is_singular( 'post' ) ) { | |
| 26 | - get_template_part( 'partials/content', 'post' ); | |
| 25 | +					if (is_singular('post')) { | |
| 26 | +						get_template_part('partials/content', 'post'); | |
| 27 | 27 |  					} else { | 
| 28 | - get_template_part( 'partials/content', 'custom' ); | |
| 28 | +						get_template_part('partials/content', 'custom'); | |
| 29 | 29 | } | 
| 30 | 30 | ?> | 
| 31 | 31 | |
| @@ -40,13 +40,13 @@ discard block | ||
| 40 | 40 | <?php lsx_content_after(); ?> | 
| 41 | 41 | |
| 42 | 42 | <?php | 
| 43 | -		if ( is_singular( 'post' ) ) { | |
| 43 | +		if (is_singular('post')) { | |
| 44 | 44 | lsx_post_nav(); | 
| 45 | 45 | } | 
| 46 | 46 | ?> | 
| 47 | 47 | |
| 48 | 48 | <?php | 
| 49 | -		if ( comments_open() ) { | |
| 49 | +		if (comments_open()) { | |
| 50 | 50 | comments_template(); | 
| 51 | 51 | } | 
| 52 | 52 | ?> |