Coding Standards: Remove a one-time `$loading` variable in `get_avatar()`.
This aims to bring consistency between two similar code fragments. Follow-up to [47554], [53480], [54895]. See #56791. Built from https://develop.svn.wordpress.org/trunk@54920 git-svn-id: http://core.svn.wordpress.org/trunk@54472 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
767bdad516
commit
5f30490527
|
@ -2867,22 +2867,26 @@ if ( ! function_exists( 'get_avatar' ) ) :
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add `loading` attribute.
|
// Add `loading` and `decoding` attributes.
|
||||||
$extra_attr = $args['extra_attr'];
|
$extra_attr = $args['extra_attr'];
|
||||||
$loading = $args['loading'];
|
|
||||||
|
|
||||||
if ( in_array( $loading, array( 'lazy', 'eager' ), true ) && ! preg_match( '/\bloading\s*=/', $extra_attr ) ) {
|
if ( in_array( $args['loading'], array( 'lazy', 'eager' ), true )
|
||||||
|
&& ! preg_match( '/\bloading\s*=/', $extra_attr )
|
||||||
|
) {
|
||||||
if ( ! empty( $extra_attr ) ) {
|
if ( ! empty( $extra_attr ) ) {
|
||||||
$extra_attr .= ' ';
|
$extra_attr .= ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
$extra_attr .= "loading='{$loading}'";
|
$extra_attr .= "loading='{$args['loading']}'";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( in_array( $args['decoding'], array( 'async', 'sync', 'auto' ), true ) && ! preg_match( '/\bdecoding\s*=/', $extra_attr ) ) {
|
if ( in_array( $args['decoding'], array( 'async', 'sync', 'auto' ), true )
|
||||||
|
&& ! preg_match( '/\bdecoding\s*=/', $extra_attr )
|
||||||
|
) {
|
||||||
if ( ! empty( $extra_attr ) ) {
|
if ( ! empty( $extra_attr ) ) {
|
||||||
$extra_attr .= ' ';
|
$extra_attr .= ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
$extra_attr .= "decoding='{$args['decoding']}'";
|
$extra_attr .= "decoding='{$args['decoding']}'";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.2-alpha-54919';
|
$wp_version = '6.2-alpha-54920';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue