Changeset 53888 for trunk/src/wp-admin/network/site-new.php
- Timestamp:
- 08/12/2022 12:09:10 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/site-new.php
r52978 r53888 194 194 } 195 195 ?> 196 <p> 197 <?php 198 printf( 199 /* translators: %s: Asterisk symbol (*). */ 200 __( 'Required fields are marked %s' ), 201 '<span class="required">*</span>' 202 ); 203 ?> 204 </p> 196 <p><?php echo wp_required_field_message(); ?></p> 205 197 <form method="post" action="<?php echo esc_url( network_admin_url( 'site-new.php?action=add-site' ) ); ?>" novalidate="novalidate"> 206 198 <?php wp_nonce_field( 'add-blog', '_wpnonce_add-blog' ); ?> 207 199 <table class="form-table" role="presentation"> 208 200 <tr class="form-field form-required"> 209 <th scope="row"><label for="site-address"><?php _e( 'Site Address (URL)' ); ?> <span class="required">*</span></label></th> 201 <th scope="row"> 202 <label for="site-address"> 203 <?php 204 _e( 'Site Address (URL)' ); 205 echo ' ' . wp_required_field_indicator(); 206 ?> 207 </label> 208 </th> 210 209 <td> 211 210 <?php if ( is_subdomain_install() ) { ?> … … 223 222 </tr> 224 223 <tr class="form-field form-required"> 225 <th scope="row"><label for="site-title"><?php _e( 'Site Title' ); ?> <span class="required">*</span></label></th> 224 <th scope="row"> 225 <label for="site-title"> 226 <?php 227 _e( 'Site Title' ); 228 echo ' ' . wp_required_field_indicator(); 229 ?> 230 </label> 231 </th> 226 232 <td><input name="blog[title]" type="text" class="regular-text" id="site-title" required /></td> 227 233 </tr> … … 258 264 <?php endif; // Languages. ?> 259 265 <tr class="form-field form-required"> 260 <th scope="row"><label for="admin-email"><?php _e( 'Admin Email' ); ?> <span class="required">*</span></label></th> 266 <th scope="row"> 267 <label for="admin-email"> 268 <?php 269 _e( 'Admin Email' ); 270 echo ' ' . wp_required_field_indicator(); 271 ?> 272 </label> 273 </th> 261 274 <td><input name="blog[email]" type="email" class="regular-text wp-suggest-user" id="admin-email" data-autocomplete-type="search" data-autocomplete-field="user_email" aria-describedby="site-admin-email" required /></td> 262 275 </tr>
Note: See TracChangeset
for help on using the changeset viewer.