You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the shortcode in a block theme, the links get output as two separate, inline links but that makes it difficult to do something as simple as center both links on the page.
Semantically, I would think the links should be wrapped in a <p> tag anyway, is that something we can get fixed?
Example before:
<a href="https://wordpress.com/wp/?partner_domain=partner&utm_source=Automattic&utm_medium=colophon&utm_campaign=Concierge%20Referral&utm_term=partner" class="imprint" target="_blank">Proudly powered by WordPress.</a> <a href="https://pressable.com/?utm_source=Automattic&utm_medium=rpc&utm_campaign=Concierge%20Referral&utm_term=concierge" class="imprint" target="_blank">Hosted by Pressable.</a>
Example after:
<p><a href="https://wordpress.com/wp/?partner_domain=partner&utm_source=Automattic&utm_medium=colophon&utm_campaign=Concierge%20Referral&utm_term=partner" class="imprint" target="_blank">Proudly powered by WordPress.</a> <a href="https://pressable.com/?utm_source=Automattic&utm_medium=rpc&utm_campaign=Concierge%20Referral&utm_term=concierge" class="imprint" target="_blank">Hosted by Pressable.</a></p>
The text was updated successfully, but these errors were encountered:
When using the shortcode in a block theme, the links get output as two separate, inline links but that makes it difficult to do something as simple as center both links on the page.
Semantically, I would think the links should be wrapped in a
<p>
tag anyway, is that something we can get fixed?Example before:
<a href="https://wordpress.com/wp/?partner_domain=partner&utm_source=Automattic&utm_medium=colophon&utm_campaign=Concierge%20Referral&utm_term=partner" class="imprint" target="_blank">Proudly powered by WordPress.</a> <a href="https://pressable.com/?utm_source=Automattic&utm_medium=rpc&utm_campaign=Concierge%20Referral&utm_term=concierge" class="imprint" target="_blank">Hosted by Pressable.</a>
Example after:
<p><a href="https://wordpress.com/wp/?partner_domain=partner&utm_source=Automattic&utm_medium=colophon&utm_campaign=Concierge%20Referral&utm_term=partner" class="imprint" target="_blank">Proudly powered by WordPress.</a> <a href="https://pressable.com/?utm_source=Automattic&utm_medium=rpc&utm_campaign=Concierge%20Referral&utm_term=concierge" class="imprint" target="_blank">Hosted by Pressable.</a></p>
The text was updated successfully, but these errors were encountered: