Ticket #42160: 42160.patch
File 42160.patch, 1.7 KB (added by , 7 years ago) |
---|
-
wp-admin/options-writing.php
168 168 169 169 <?php if ( 1 == get_option('blog_public') ) : ?> 170 170 171 <p><label for="ping_sites"><?php _e( 'When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href="https://codex.wordpress.org/Update_Services">Update Services</a> on the Codex. Separate multiple service URLs with line breaks.' ) ?></label></p> 171 <p><label for="ping_sites"><?php printf( 172 /* translators: %s: Codex URL */ 173 __( 'When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href="%s">Update Services</a> on the Codex. Separate multiple service URLs with line breaks.' ), 174 __( 'https://codex.wordpress.org/Update_Services' ) 175 ); ?></label></p> 172 176 173 177 <textarea name="ping_sites" id="ping_sites" class="large-text code" rows="3"><?php echo esc_textarea( get_option('ping_sites') ); ?></textarea> 174 178 175 179 <?php else : ?> 176 180 177 <p><?php printf(__('WordPress is not notifying any <a href="https://codex.wordpress.org/Update_Services">Update Services</a> because of your site’s <a href="%s">visibility settings</a>.'), 'options-reading.php'); ?></p> 181 <p><?php printf( 182 /* translators: 1: Codex URL 2: Settings page URL */ 183 __( 'WordPress is not notifying any <a href="%1$s">Update Services</a> because of your site’s <a href="%2$s">visibility settings</a>.' ), 184 __( 'https://codex.wordpress.org/Update_Services' ), 185 'options-reading.php' 186 ); ?></p> 178 187 179 188 <?php endif; ?> 180 189 <?php } // multisite ?>