Make WordPress Core

Ticket #34149: 34149.2.patch

File 34149.2.patch, 3.3 KB (added by grvrulz, 9 years ago)

Patch with some default styling added.

  • wp-signup.php

     
    6161                .mu_register label { font-weight:700; font-size:15px; display:block; margin:10px 0; }
    6262                .mu_register label.checkbox { display:inline; }
    6363                .mu_register .mu_alert { font-weight:700; padding:10px; color:#333333; background:#ffffe0; border:1px solid #e6db55; }
     64                .mu_register fieldset { border:0; padding:0; margin:0; }
     65                .mu_register input[type="checkbox"] { vertical-align:middle; }
     66                .mu_register p.description { margin-top:0.2em; font-size:small; font-style:italic; }
    6467        </style>
    6568        <?php
    6669}
     
    123126
    124127        <div id="privacy">
    125128        <p class="privacy-intro">
    126             <label for="blog_public_on"><?php _e('Privacy:') ?></label>
    127             <?php _e( 'Allow search engines to index this site.' ); ?>
    128             <br style="clear:both" />
    129             <label class="checkbox" for="blog_public_on">
    130                 <input type="radio" id="blog_public_on" name="blog_public" value="1" <?php if ( !isset( $_POST['blog_public'] ) || $_POST['blog_public'] == '1' ) { ?>checked="checked"<?php } ?> />
    131                 <strong><?php _e( 'Yes' ); ?></strong>
    132             </label>
    133             <label class="checkbox" for="blog_public_off">
    134                 <input type="radio" id="blog_public_off" name="blog_public" value="0" <?php if ( isset( $_POST['blog_public'] ) && $_POST['blog_public'] == '0' ) { ?>checked="checked"<?php } ?> />
    135                 <strong><?php _e( 'No' ); ?></strong>
    136             </label>
     129           
     130            <fieldset>
     131              <label><?php has_action( 'blog_privacy_selector' ) ? _e( 'Site Visibility' ) : _e( 'Search Engine Visibility' ); ?></label>
     132              <legend class="screen-reader-text"><span><?php has_action( 'blog_privacy_selector' ) ? _e( 'Site Visibility' ) : _e( 'Search Engine Visibility' ); ?> </span></legend>
     133              <?php if ( has_action( 'blog_privacy_selector' ) ) : ?>
     134                      <input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />
     135                      <label for="blog-public"><?php _e( 'Allow search engines to index this site' );?></label><br/>
     136                      <input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> />
     137                      <label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label>
     138                      <p class="description"><?php _e( 'Note: Neither of these options blocks access to your site &mdash; it is up to search engines to honor your request.' ); ?></p>
     139                      <?php
     140                      /** This action is documented in wp-admin/options-reading.php */
     141                      do_action( 'blog_privacy_selector' );
     142                      ?>
     143              <?php else : ?>
     144                      <label for="blog_public"><input name="blog_public" type="checkbox" id="blog_public" value="0" <?php checked( '0', get_option( 'blog_public' ) ); ?> />
     145                      <?php _e( 'Discourage search engines from indexing this site' ); ?></label>
     146                      <p class="description"><?php _e( 'It is up to search engines to honor this request.' ); ?></p>
     147              <?php endif; ?>
     148              </fieldset>
    137149        </p>
    138150        </div>
    139151