Skip to content

Commit 94c71f0

Browse files
committed
Fix simple liniting issues
1 parent c3474af commit 94c71f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

themes/osi/template-parts/content-archive-board-member.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
?>
11-
<?php $content_size = ( 'post' !== get_post_type() && !is_search() ) ? 'three-column' : 'two-column'; ?>
11+
<?php $content_size = ( 'post' !== get_post_type() && ! is_search() ) ? 'three-column' : 'two-column'; ?>
1212
<article id="post-<?php the_ID(); ?>" <?php post_class( 'archive wp-block-column ' . $content_size ); ?>>
1313
<?php get_template_part( 'template-parts/featured-image', 'cropped' ); ?>
1414
<section class="post--summary osi-list--post-content">
@@ -33,12 +33,12 @@
3333
</span>
3434
<?php endif; ?>
3535
</p>
36-
<?php if( osi_field_check( 'current_term_start_date' ) ) : ?>
36+
<?php if ( osi_field_check( 'current_term_start_date' ) ) : ?>
3737
<p class="member-dates">
38-
<?php
38+
<?php
3939
echo __( 'Current Term:', 'osi' ) . ' ';
4040
osi_the_valid_date_field( 'current_term_start_date', 'M Y' );
41-
if( osi_field_check( 'current_term_end_date' ) ) :
41+
if ( osi_field_check( 'current_term_end_date' ) ) :
4242
echo ' ' . __( 'to', 'osi' ) . ' ';
4343
osi_the_valid_date_field( 'current_term_end_date', 'M Y' );
4444
endif;

0 commit comments

Comments
 (0)