Twenty Twenty-One: Fix typography settings for the Quote block.

Follow-up to [49216], [49478], [49574], [49633], [49800].

Props poena, jyolsna, deepakvijayan, audrasjb, whaze, ironprogrammer, suascat_wp, sannevndrmeulen, zunaid321, oglekler, sabernhardt, mukesh27, ugyensupport, devmuhib, priyanshii5, nicolefurlan, hellofromTonya, huzaifaalmesbah, shailu25, vivekawsm, imranhasanraaz, karmatosed.
Fixes #55991.
Built from https://develop.svn.wordpress.org/trunk@58410


git-svn-id: http://core.svn.wordpress.org/trunk@57859 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2024-06-13 20:55:06 +00:00
parent b5ec907fb0
commit 3aaf7ab71e
9 changed files with 218 additions and 75 deletions

View File

@ -184,8 +184,6 @@ blockquote strong {
blockquote:before { blockquote:before {
content: "“"; content: "“";
font-size: 1.25rem;
line-height: 1.7;
position: absolute; position: absolute;
left: -12px; left: -12px;
} }
@ -194,7 +192,6 @@ blockquote .wp-block-quote__citation,
blockquote cite, blockquote cite,
blockquote footer { blockquote footer {
color: #28303d; color: #28303d;
font-size: 1rem;
font-style: normal; font-style: normal;
} }
@media only screen and (max-width: 481.98px) { @media only screen and (max-width: 481.98px) {
@ -1428,9 +1425,6 @@ pre.wp-block-preformatted {
border-left: none; border-left: none;
margin: 30px auto 30px 25px; margin: 30px auto 30px 25px;
padding-left: 1em; padding-left: 1em;
}
.wp-block-quote p {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 1.25rem; font-size: 1.25rem;
font-style: normal; font-style: normal;
@ -1438,21 +1432,31 @@ pre.wp-block-preformatted {
line-height: 1.7; line-height: 1.7;
} }
.wp-block-quote p {
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
}
.wp-block-quote strong { .wp-block-quote strong {
font-weight: bolder; font-weight: bolder;
} }
.wp-block-quote:before { .wp-block-quote:before {
content: "“"; content: "“";
font-size: 1.25rem;
line-height: 1.7;
left: 8px; left: 8px;
} }
.wp-block-quote .wp-block-quote__citation { .wp-block-quote .wp-block-quote__citation {
color: currentColor; color: currentColor;
font-size: 1rem; font-family: inherit;
font-style: normal; font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
} }
.has-background .wp-block-quote .wp-block-quote__citation, .has-background .wp-block-quote .wp-block-quote__citation,
@ -1462,6 +1466,14 @@ pre.wp-block-preformatted {
color: currentColor; color: currentColor;
} }
.wp-block-quote:where(:not([style*=font-style])) .wp-block-quote__citation {
font-style: normal;
}
.wp-block-quote:where(:not([style*=font-weight])) .wp-block-quote__citation {
font-weight: normal;
}
.wp-block-quote.has-text-align-right { .wp-block-quote.has-text-align-right {
margin: 30px 25px 30px auto; margin: 30px 25px 30px auto;
padding-right: 0; padding-right: 0;
@ -1474,9 +1486,6 @@ pre.wp-block-preformatted {
.wp-block-quote.has-text-align-right p:before { .wp-block-quote.has-text-align-right p:before {
content: "”"; content: "”";
font-size: 1.25rem;
font-weight: normal;
line-height: 1.7;
margin-right: 5px; margin-right: 5px;
} }

View File

@ -1210,8 +1210,6 @@ blockquote strong {
blockquote:before { blockquote:before {
content: "“"; content: "“";
font-size: 1.25rem;
line-height: 1.7;
position: absolute; position: absolute;
left: -12px; left: -12px;
} }
@ -1220,7 +1218,6 @@ blockquote .wp-block-quote__citation,
blockquote cite, blockquote cite,
blockquote footer { blockquote footer {
color: #28303d; color: #28303d;
font-size: 1rem;
font-style: normal; font-style: normal;
} }
@media only screen and (max-width: 481.98px) { @media only screen and (max-width: 481.98px) {
@ -3128,19 +3125,41 @@ pre.wp-block-preformatted {
.wp-block-quote { .wp-block-quote {
border-left: none; border-left: none;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 1.25rem;
font-style: normal;
font-weight: 700;
line-height: 1.7;
/** /**
* Block Options * Block Options
*/ */
} }
.wp-block-quote p {
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
}
.wp-block-quote:before { .wp-block-quote:before {
content: "“"; content: "“";
font-size: 1.25rem;
line-height: 1.7;
left: 8px; left: 8px;
} }
.wp-block-quote .wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
font-family: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
}
.has-background .wp-block-quote .wp-block-quote__citation, .has-background .wp-block-quote .wp-block-quote__citation,
[class*=background-color] .wp-block-quote .wp-block-quote__citation, [class*=background-color] .wp-block-quote .wp-block-quote__citation,
[style*=background-color] .wp-block-quote .wp-block-quote__citation, [style*=background-color] .wp-block-quote .wp-block-quote__citation,
@ -3156,6 +3175,24 @@ pre.wp-block-preformatted {
color: currentColor; color: currentColor;
} }
.wp-block-quote:where(:not([style*=font-style])) .wp-block-quote__citation {
font-style: normal;
}
.wp-block-quote:where(:not([style*=font-style])) cite {
font-style: normal;
}
.wp-block-quote:where(:not([style*=font-style])) footer {
font-style: normal;
}
.wp-block-quote:where(:not([style*=font-weight])) .wp-block-quote__citation,
.wp-block-quote:where(:not([style*=font-weight])) cite,
.wp-block-quote:where(:not([style*=font-weight])) footer {
font-weight: normal;
}
.wp-block-quote.has-text-align-right { .wp-block-quote.has-text-align-right {
margin: 30px 25px 30px auto; margin: 30px 25px 30px auto;
padding-right: 0; padding-right: 0;
@ -3168,9 +3205,6 @@ pre.wp-block-preformatted {
.wp-block-quote.has-text-align-right p:before { .wp-block-quote.has-text-align-right p:before {
content: "”"; content: "”";
font-size: 1.25rem;
font-weight: normal;
line-height: 1.7;
margin-right: 5px; margin-right: 5px;
} }

View File

@ -338,7 +338,6 @@ blockquote cite,
blockquote footer { blockquote footer {
font-weight: normal; font-weight: normal;
color: var(--global--color-primary); color: var(--global--color-primary);
font-size: var(--global--font-size-xs);
letter-spacing: var(--global--letter-spacing); letter-spacing: var(--global--letter-spacing);
} }
@ -368,8 +367,6 @@ blockquote strong {
blockquote:before { blockquote:before {
content: "“"; content: "“";
font-size: var(--quote--font-size);
line-height: var(--quote--line-height);
position: absolute; position: absolute;
left: calc(-0.5 * var(--global--spacing-horizontal)); left: calc(-0.5 * var(--global--spacing-horizontal));
} }
@ -378,7 +375,6 @@ blockquote .wp-block-quote__citation,
blockquote cite, blockquote cite,
blockquote footer { blockquote footer {
color: var(--global--color-primary); color: var(--global--color-primary);
font-size: var(--global--font-size-xs);
font-style: var(--quote--font-style-cite); font-style: var(--quote--font-style-cite);
} }
@media only screen and (max-width: 481.98px) { @media only screen and (max-width: 481.98px) {
@ -1530,9 +1526,6 @@ pre.wp-block-preformatted {
border-left: none; border-left: none;
margin: var(--global--spacing-vertical) auto var(--global--spacing-vertical) var(--global--spacing-horizontal); margin: var(--global--spacing-vertical) auto var(--global--spacing-vertical) var(--global--spacing-horizontal);
padding-left: 1em; padding-left: 1em;
}
.wp-block-quote p {
font-family: var(--quote--font-family); font-family: var(--quote--font-family);
font-size: var(--quote--font-size); font-size: var(--quote--font-size);
font-style: var(--quote--font-style); font-style: var(--quote--font-style);
@ -1540,21 +1533,31 @@ pre.wp-block-preformatted {
line-height: var(--quote--line-height); line-height: var(--quote--line-height);
} }
.wp-block-quote p {
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
}
.wp-block-quote strong { .wp-block-quote strong {
font-weight: var(--quote--font-weight-strong); font-weight: var(--quote--font-weight-strong);
} }
.wp-block-quote:before { .wp-block-quote:before {
content: "“"; content: "“";
font-size: var(--quote--font-size);
line-height: var(--quote--line-height);
left: 8px; left: 8px;
} }
.wp-block-quote .wp-block-quote__citation { .wp-block-quote .wp-block-quote__citation {
color: currentColor; color: currentColor;
font-size: var(--global--font-size-xs); font-family: inherit;
font-style: var(--quote--font-style-cite); font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
} }
.has-background .wp-block-quote .wp-block-quote__citation, .has-background .wp-block-quote .wp-block-quote__citation,
@ -1564,6 +1567,14 @@ pre.wp-block-preformatted {
color: currentColor; color: currentColor;
} }
.wp-block-quote:where(:not([style*=font-style])) .wp-block-quote__citation {
font-style: var(--quote--font-style-cite);
}
.wp-block-quote:where(:not([style*=font-weight])) .wp-block-quote__citation {
font-weight: normal;
}
.wp-block-quote.has-text-align-right { .wp-block-quote.has-text-align-right {
margin: var(--global--spacing-vertical) var(--global--spacing-horizontal) var(--global--spacing-vertical) auto; margin: var(--global--spacing-vertical) var(--global--spacing-horizontal) var(--global--spacing-vertical) auto;
padding-right: 0; padding-right: 0;
@ -1576,9 +1587,6 @@ pre.wp-block-preformatted {
.wp-block-quote.has-text-align-right p:before { .wp-block-quote.has-text-align-right p:before {
content: "”"; content: "”";
font-size: var(--quote--font-size);
font-weight: normal;
line-height: var(--quote--line-height);
margin-right: 5px; margin-right: 5px;
} }

View File

@ -29,7 +29,6 @@ blockquote {
footer { footer {
font-weight: normal; font-weight: normal;
color: var(--global--color-primary); color: var(--global--color-primary);
font-size: var(--global--font-size-xs);
letter-spacing: var(--global--letter-spacing); letter-spacing: var(--global--letter-spacing);
} }
@ -57,8 +56,6 @@ blockquote {
&:before { &:before {
content: "\201C"; content: "\201C";
font-size: var(--quote--font-size);
line-height: var(--quote--line-height);
position: absolute; position: absolute;
left: calc(-0.5 * var(--global--spacing-horizontal)); left: calc(-0.5 * var(--global--spacing-horizontal));
} }
@ -67,7 +64,6 @@ blockquote {
cite, cite,
footer { footer {
color: var(--global--color-primary); color: var(--global--color-primary);
font-size: var(--global--font-size-xs);
font-style: var(--quote--font-style-cite); font-style: var(--quote--font-style-cite);
} }

View File

@ -3,13 +3,19 @@
border-left: none; border-left: none;
margin: var(--global--spacing-vertical) auto var(--global--spacing-vertical) var(--global--spacing-horizontal); margin: var(--global--spacing-vertical) auto var(--global--spacing-vertical) var(--global--spacing-horizontal);
padding-left: 1em; padding-left: 1em;
font-family: var(--quote--font-family);
font-size: var(--quote--font-size);
font-style: var(--quote--font-style);
font-weight: var(--quote--font-weight);
line-height: var(--quote--line-height);
p { p {
font-family: var(--quote--font-family); font-family: inherit;
font-size: var(--quote--font-size); font-size: inherit;
font-style: var(--quote--font-style); font-style: inherit;
font-weight: var(--quote--font-weight); font-weight: inherit;
line-height: var(--quote--line-height); line-height: inherit;
letter-spacing: inherit;
} }
strong { strong {
@ -18,15 +24,16 @@
&:before { &:before {
content: "\201C"; content: "\201C";
font-size: var(--quote--font-size);
line-height: var(--quote--line-height);
left: 8px; left: 8px;
} }
.wp-block-quote__citation { .wp-block-quote__citation {
color: currentColor; color: currentColor;
font-size: var(--global--font-size-xs); font-family: inherit;
font-style: var(--quote--font-style-cite); font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
.has-background &, .has-background &,
[class*="background-color"] &, [class*="background-color"] &,
@ -36,6 +43,15 @@
} }
} }
&:where(:not([style*="font-style"])) .wp-block-quote__citation {
font-style: var(--quote--font-style-cite);
}
// The cite has a lighter font-weight than the rest of the quote.
&:where(:not([style*="font-weight"])) .wp-block-quote__citation {
font-weight: normal;
}
&.has-text-align-right { &.has-text-align-right {
margin: var(--global--spacing-vertical) var(--global--spacing-horizontal) var(--global--spacing-vertical) auto; margin: var(--global--spacing-vertical) var(--global--spacing-horizontal) var(--global--spacing-vertical) auto;
padding-right: 0; padding-right: 0;
@ -49,9 +65,6 @@
// Align the quote left of the text. // Align the quote left of the text.
p:before { p:before {
content: "\201D"; content: "\201D";
font-size: var(--quote--font-size);
font-weight: normal;
line-height: var(--quote--line-height);
margin-right: 5px; margin-right: 5px;
} }
} }
@ -64,6 +77,7 @@
} }
} }
// The large style was removed in WordPress 6.0, the CSS is kept for backwards compatibility.
&.is-large, &.is-large,
&.is-style-large { &.is-style-large {
padding-left: 0; padding-left: 0;

View File

@ -1,16 +1,33 @@
.wp-block-quote { .wp-block-quote {
border-left: none; border-left: none;
font-family: var(--quote--font-family);
font-size: var(--quote--font-size);
font-style: var(--quote--font-style);
font-weight: var(--quote--font-weight);
line-height: var(--quote--line-height);
p {
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
}
&:before { &:before {
content: "\201C"; content: "\201C";
font-size: var(--quote--font-size);
line-height: var(--quote--line-height);
left: 8px; left: 8px;
} }
.wp-block-quote__citation, .wp-block-quote__citation,
cite, cite,
footer { footer {
font-family: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
.has-background &, .has-background &,
[class*="background-color"] &, [class*="background-color"] &,
@ -20,6 +37,19 @@
} }
} }
&:where(:not([style*="font-style"])) .wp-block-quote__citation,
&:where(:not([style*="font-style"])) cite,
&:where(:not([style*="font-style"])) footer {
font-style: var(--quote--font-style-cite);
}
// The cite has a lighter font-weight than the rest of the quote.
&:where(:not([style*="font-weight"])) .wp-block-quote__citation,
&:where(:not([style*="font-weight"])) cite,
&:where(:not([style*="font-weight"])) footer {
font-weight: normal;
}
/** /**
* Block Options * Block Options
*/ */
@ -36,9 +66,6 @@
// Align the quote left of the text. // Align the quote left of the text.
p:before { p:before {
content: "\201D"; content: "\201D";
font-size: var(--quote--font-size);
font-weight: normal;
line-height: var(--quote--line-height);
margin-right: 5px; margin-right: 5px;
} }
} }
@ -51,6 +78,7 @@
} }
} }
// The large style was removed in WordPress 6.0, the CSS is kept for backwards compatibility.
&.is-large, &.is-large,
&.is-style-large { &.is-style-large {
padding-left: 0; padding-left: 0;

View File

@ -1071,7 +1071,6 @@ blockquote cite,
blockquote footer { blockquote footer {
font-weight: normal; font-weight: normal;
color: var(--global--color-primary); color: var(--global--color-primary);
font-size: var(--global--font-size-xs);
letter-spacing: var(--global--letter-spacing); letter-spacing: var(--global--letter-spacing);
} }
@ -1101,8 +1100,6 @@ blockquote strong {
blockquote:before { blockquote:before {
content: "“"; content: "“";
font-size: var(--quote--font-size);
line-height: var(--quote--line-height);
position: absolute; position: absolute;
right: calc(-0.5 * var(--global--spacing-horizontal)); right: calc(-0.5 * var(--global--spacing-horizontal));
} }
@ -1111,7 +1108,6 @@ blockquote .wp-block-quote__citation,
blockquote cite, blockquote cite,
blockquote footer { blockquote footer {
color: var(--global--color-primary); color: var(--global--color-primary);
font-size: var(--global--font-size-xs);
font-style: var(--quote--font-style-cite); font-style: var(--quote--font-style-cite);
} }
@media only screen and (max-width: 481.98px) { @media only screen and (max-width: 481.98px) {
@ -2924,19 +2920,41 @@ pre.wp-block-preformatted {
.wp-block-quote { .wp-block-quote {
border-right: none; border-right: none;
font-family: var(--quote--font-family);
font-size: var(--quote--font-size);
font-style: var(--quote--font-style);
font-weight: var(--quote--font-weight);
line-height: var(--quote--line-height);
/** /**
* Block Options * Block Options
*/ */
} }
.wp-block-quote p {
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
}
.wp-block-quote:before { .wp-block-quote:before {
content: "“"; content: "“";
font-size: var(--quote--font-size);
line-height: var(--quote--line-height);
right: 8px; right: 8px;
} }
.wp-block-quote .wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
font-family: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
}
.has-background .wp-block-quote .wp-block-quote__citation, .has-background .wp-block-quote .wp-block-quote__citation,
[class*=background-color] .wp-block-quote .wp-block-quote__citation, [class*=background-color] .wp-block-quote .wp-block-quote__citation,
[style*=background-color] .wp-block-quote .wp-block-quote__citation, [style*=background-color] .wp-block-quote .wp-block-quote__citation,
@ -2952,6 +2970,18 @@ pre.wp-block-preformatted {
color: currentColor; color: currentColor;
} }
.wp-block-quote:where(:not([style*=font-style])) .wp-block-quote__citation,
.wp-block-quote:where(:not([style*=font-style])) cite,
.wp-block-quote:where(:not([style*=font-style])) footer {
font-style: var(--quote--font-style-cite);
}
.wp-block-quote:where(:not([style*=font-weight])) .wp-block-quote__citation,
.wp-block-quote:where(:not([style*=font-weight])) cite,
.wp-block-quote:where(:not([style*=font-weight])) footer {
font-weight: normal;
}
.wp-block-quote.has-text-align-right { .wp-block-quote.has-text-align-right {
margin: var(--global--spacing-vertical) auto var(--global--spacing-vertical) var(--global--spacing-horizontal); margin: var(--global--spacing-vertical) auto var(--global--spacing-vertical) var(--global--spacing-horizontal);
padding-left: 0; padding-left: 0;
@ -2964,9 +2994,6 @@ pre.wp-block-preformatted {
.wp-block-quote.has-text-align-right p:before { .wp-block-quote.has-text-align-right p:before {
content: "”"; content: "”";
font-size: var(--quote--font-size);
font-weight: normal;
line-height: var(--quote--line-height);
margin-left: 5px; margin-left: 5px;
} }

View File

@ -1079,7 +1079,6 @@ blockquote cite,
blockquote footer { blockquote footer {
font-weight: normal; font-weight: normal;
color: var(--global--color-primary); color: var(--global--color-primary);
font-size: var(--global--font-size-xs);
letter-spacing: var(--global--letter-spacing); letter-spacing: var(--global--letter-spacing);
} }
@ -1109,8 +1108,6 @@ blockquote strong {
blockquote:before { blockquote:before {
content: "“"; content: "“";
font-size: var(--quote--font-size);
line-height: var(--quote--line-height);
position: absolute; position: absolute;
left: calc(-0.5 * var(--global--spacing-horizontal)); left: calc(-0.5 * var(--global--spacing-horizontal));
} }
@ -1119,7 +1116,6 @@ blockquote .wp-block-quote__citation,
blockquote cite, blockquote cite,
blockquote footer { blockquote footer {
color: var(--global--color-primary); color: var(--global--color-primary);
font-size: var(--global--font-size-xs);
font-style: var(--quote--font-style-cite); font-style: var(--quote--font-style-cite);
} }
@media only screen and (max-width: 481.98px) { @media only screen and (max-width: 481.98px) {
@ -2934,19 +2930,41 @@ pre.wp-block-preformatted {
.wp-block-quote { .wp-block-quote {
border-left: none; border-left: none;
font-family: var(--quote--font-family);
font-size: var(--quote--font-size);
font-style: var(--quote--font-style);
font-weight: var(--quote--font-weight);
line-height: var(--quote--line-height);
/** /**
* Block Options * Block Options
*/ */
} }
.wp-block-quote p {
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
}
.wp-block-quote:before { .wp-block-quote:before {
content: "“"; content: "“";
font-size: var(--quote--font-size);
line-height: var(--quote--line-height);
left: 8px; left: 8px;
} }
.wp-block-quote .wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
font-family: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
}
.has-background .wp-block-quote .wp-block-quote__citation, .has-background .wp-block-quote .wp-block-quote__citation,
[class*=background-color] .wp-block-quote .wp-block-quote__citation, [class*=background-color] .wp-block-quote .wp-block-quote__citation,
[style*=background-color] .wp-block-quote .wp-block-quote__citation, [style*=background-color] .wp-block-quote .wp-block-quote__citation,
@ -2962,6 +2980,18 @@ pre.wp-block-preformatted {
color: currentColor; color: currentColor;
} }
.wp-block-quote:where(:not([style*=font-style])) .wp-block-quote__citation,
.wp-block-quote:where(:not([style*=font-style])) cite,
.wp-block-quote:where(:not([style*=font-style])) footer {
font-style: var(--quote--font-style-cite);
}
.wp-block-quote:where(:not([style*=font-weight])) .wp-block-quote__citation,
.wp-block-quote:where(:not([style*=font-weight])) cite,
.wp-block-quote:where(:not([style*=font-weight])) footer {
font-weight: normal;
}
.wp-block-quote.has-text-align-right { .wp-block-quote.has-text-align-right {
margin: var(--global--spacing-vertical) var(--global--spacing-horizontal) var(--global--spacing-vertical) auto; margin: var(--global--spacing-vertical) var(--global--spacing-horizontal) var(--global--spacing-vertical) auto;
padding-right: 0; padding-right: 0;
@ -2974,9 +3004,6 @@ pre.wp-block-preformatted {
.wp-block-quote.has-text-align-right p:before { .wp-block-quote.has-text-align-right p:before {
content: "”"; content: "”";
font-size: var(--quote--font-size);
font-weight: normal;
line-height: var(--quote--line-height);
margin-right: 5px; margin-right: 5px;
} }

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.6-beta2-58409'; $wp_version = '6.6-beta2-58410';
/** /**
* 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.