Bundled Themes: Remove redundant semicolons after closing curly brackets.
Includes a few minor indentation fixes. Props jrf. See #53359. Built from https://develop.svn.wordpress.org/trunk@51553 git-svn-id: http://core.svn.wordpress.org/trunk@51164 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
815e31f611
commit
64b193980a
|
@ -27,9 +27,9 @@
|
|||
} else {
|
||||
echo twentyseventeen_time_link();
|
||||
twentyseventeen_edit_link();
|
||||
};
|
||||
}
|
||||
echo '</div><!-- .entry-meta -->';
|
||||
};
|
||||
}
|
||||
|
||||
if ( is_single() ) {
|
||||
the_title( '<h1 class="entry-title">', '</h1>' );
|
||||
|
@ -72,9 +72,8 @@
|
|||
echo $audio_html;
|
||||
echo '</div><!-- .entry-audio -->';
|
||||
}
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
if ( is_single() || empty( $audio ) ) {
|
||||
|
||||
|
@ -94,8 +93,7 @@
|
|||
'link_after' => '</span>',
|
||||
)
|
||||
);
|
||||
|
||||
};
|
||||
}
|
||||
?>
|
||||
|
||||
</div><!-- .entry-content -->
|
||||
|
|
|
@ -27,9 +27,9 @@
|
|||
} else {
|
||||
echo twentyseventeen_time_link();
|
||||
twentyseventeen_edit_link();
|
||||
};
|
||||
}
|
||||
echo '</div><!-- .entry-meta -->';
|
||||
};
|
||||
}
|
||||
|
||||
if ( is_single() ) {
|
||||
the_title( '<h1 class="entry-title">', '</h1>' );
|
||||
|
@ -59,9 +59,8 @@
|
|||
echo '<div class="entry-gallery">';
|
||||
echo get_post_gallery();
|
||||
echo '</div>';
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
if ( is_single() || ! get_post_gallery() ) {
|
||||
|
||||
|
@ -81,8 +80,7 @@
|
|||
'link_after' => '</span>',
|
||||
)
|
||||
);
|
||||
|
||||
};
|
||||
}
|
||||
?>
|
||||
|
||||
</div><!-- .entry-content -->
|
||||
|
|
|
@ -27,9 +27,9 @@
|
|||
} else {
|
||||
echo twentyseventeen_time_link();
|
||||
twentyseventeen_edit_link();
|
||||
};
|
||||
}
|
||||
echo '</div><!-- .entry-meta -->';
|
||||
};
|
||||
}
|
||||
|
||||
if ( is_single() ) {
|
||||
the_title( '<h1 class="entry-title">', '</h1>' );
|
||||
|
@ -72,7 +72,7 @@
|
|||
)
|
||||
);
|
||||
|
||||
};
|
||||
}
|
||||
?>
|
||||
|
||||
</div><!-- .entry-content -->
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
twentyseventeen_edit_link();
|
||||
}
|
||||
echo '</div><!-- .entry-meta -->';
|
||||
};
|
||||
}
|
||||
|
||||
if ( is_single() ) {
|
||||
the_title( '<h1 class="entry-title">', '</h1>' );
|
||||
|
@ -71,9 +71,8 @@
|
|||
echo $video_html;
|
||||
echo '</div>';
|
||||
}
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
if ( is_single() || empty( $video ) ) {
|
||||
|
||||
|
@ -93,7 +92,7 @@
|
|||
'link_after' => '</span>',
|
||||
)
|
||||
);
|
||||
};
|
||||
}
|
||||
?>
|
||||
|
||||
</div><!-- .entry-content -->
|
||||
|
|
|
@ -27,9 +27,9 @@
|
|||
} else {
|
||||
echo twentyseventeen_time_link();
|
||||
twentyseventeen_edit_link();
|
||||
};
|
||||
}
|
||||
echo '</div><!-- .entry-meta -->';
|
||||
};
|
||||
}
|
||||
|
||||
if ( is_single() ) {
|
||||
the_title( '<h1 class="entry-title">', '</h1>' );
|
||||
|
|
|
@ -179,4 +179,4 @@ if ( have_posts() ) {
|
|||
<?php comments_template(); ?>
|
||||
|
||||
<?php endwhile;
|
||||
}; // End of the loop. ?>
|
||||
} // End of the loop. ?>
|
||||
|
|
|
@ -45,4 +45,4 @@ if ( have_posts() ) {
|
|||
<?php comments_template( '', true ); ?>
|
||||
|
||||
<?php endwhile;
|
||||
}; // End of the loop. ?>
|
||||
} // End of the loop. ?>
|
||||
|
|
|
@ -88,4 +88,4 @@ if ( have_posts() ) {
|
|||
<?php comments_template( '', true ); ?>
|
||||
|
||||
<?php endwhile;
|
||||
}; // End of the loop. ?>
|
||||
} // End of the loop. ?>
|
||||
|
|
|
@ -28,7 +28,6 @@ $twenty_twenty_one_comment_count = get_comments_number();
|
|||
|
||||
<?php
|
||||
if ( have_comments() ) :
|
||||
;
|
||||
?>
|
||||
<h2 class="comments-title">
|
||||
<?php if ( '1' === $twenty_twenty_one_comment_count ) : ?>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-alpha-51552';
|
||||
$wp_version = '5.9-alpha-51553';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue