Twenty Twenty-One: Fix "Opening PHP tag must be on a line by itself" WPCS issue.
Follow-up to [50802]. See #52938. Built from https://develop.svn.wordpress.org/trunk@50806 git-svn-id: http://core.svn.wordpress.org/trunk@50415 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8641429845
commit
6f2fa9ef42
|
@ -16,12 +16,13 @@
|
|||
|
||||
get_header(); ?>
|
||||
|
||||
<?php if ( is_home() && ! is_front_page() && ! empty( single_post_title( '', false ) ) ) { ?>
|
||||
<?php if ( is_home() && ! is_front_page() && ! empty( single_post_title( '', false ) ) ) : ?>
|
||||
<header class="page-header alignwide">
|
||||
<h1 class="page-title"><?php single_post_title(); ?></h1>
|
||||
</header><!-- .page-header -->
|
||||
<?php }
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
if ( have_posts() ) {
|
||||
|
||||
// Load posts loop.
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.8-alpha-50805';
|
||||
$wp_version = '5.8-alpha-50806';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue