mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-01 19:24:34 +00:00
Accessibility: Don't mark up "URL" as an abbreviation.
"URL" has essentially entered language as a self-contained concept, there's no more need to expand it with an `<abbr>` element and a title attribute. Fixes #35174. git-svn-id: https://develop.svn.wordpress.org/trunk@36142 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -222,7 +222,7 @@ $structures = array(
|
||||
<h2 class="title"><?php _e('Optional'); ?></h2>
|
||||
<p><?php
|
||||
/* translators: %s is a placeholder that must come at the start of the URL. */
|
||||
printf( __('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>%s/topics/uncategorized/</code>. If you leave these blank the defaults will be used.'), get_option('home') . $blog_prefix . $prefix ); ?></p>
|
||||
printf( __( 'If you like, you may enter custom structures for your category and tag URLs here. For example, using <code>topics</code> as your category base would make your category links like <code>%s/topics/uncategorized/</code>. If you leave these blank the defaults will be used.' ), get_option( 'home' ) . $blog_prefix . $prefix ); ?></p>
|
||||
|
||||
<table class="form-table">
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user