wp/wp-admin/options-writing.php
changeset 18 be944660c56a
parent 16 a86126ab1dd4
child 19 3d72ae0968f4
equal deleted inserted replaced
17:34716fd837a4 18:be944660c56a
   203 	<?php if ( 1 == get_option( 'blog_public' ) ) : ?>
   203 	<?php if ( 1 == get_option( 'blog_public' ) ) : ?>
   204 
   204 
   205 	<p><label for="ping_sites">
   205 	<p><label for="ping_sites">
   206 		<?php
   206 		<?php
   207 		printf(
   207 		printf(
   208 			/* translators: %s: Codex URL. */
   208 			/* translators: %s: Documentation URL. */
   209 			__( '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.' ),
   209 			__( '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.' ),
   210 			__( 'https://codex.wordpress.org/Update_Services' )
   210 			__( 'https://wordpress.org/support/article/update-services/' )
   211 		);
   211 		);
   212 		?>
   212 		?>
   213 	</label></p>
   213 	</label></p>
   214 
   214 
   215 	<textarea name="ping_sites" id="ping_sites" class="large-text code" rows="3"><?php echo esc_textarea( get_option( 'ping_sites' ) ); ?></textarea>
   215 	<textarea name="ping_sites" id="ping_sites" class="large-text code" rows="3"><?php echo esc_textarea( get_option( 'ping_sites' ) ); ?></textarea>
   217 	<?php else : ?>
   217 	<?php else : ?>
   218 
   218 
   219 	<p>
   219 	<p>
   220 		<?php
   220 		<?php
   221 		printf(
   221 		printf(
   222 			/* translators: 1: Codex URL, 2: URL to Reading Settings screen. */
   222 			/* translators: 1: Documentation URL, 2: URL to Reading Settings screen. */
   223 			__( 'WordPress is not notifying any <a href="%1$s">Update Services</a> because of your site&#8217;s <a href="%2$s">visibility settings</a>.' ),
   223 			__( 'WordPress is not notifying any <a href="%1$s">Update Services</a> because of your site&#8217;s <a href="%2$s">visibility settings</a>.' ),
   224 			__( 'https://codex.wordpress.org/Update_Services' ),
   224 			__( 'https://wordpress.org/support/article/update-services/' ),
   225 			'options-reading.php'
   225 			'options-reading.php'
   226 		);
   226 		);
   227 		?>
   227 		?>
   228 	</p>
   228 	</p>
   229 
   229