~canonical-sysadmins/wordpress/4.5.3

« back to all changes in this revision

Viewing changes to wp-admin/options-writing.php

  • Committer: Manuel Seelaus
  • Date: 2015-12-09 17:47:18 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: manuel.seelaus@canonical.com-20151209174718-coxethm2swbeqksy
Merge WP4.4 from upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        get_current_screen()->add_help_tab( array(
28
28
                'id'      => 'options-postemail',
29
29
                'title'   => __( 'Post Via Email' ),
30
 
                'content' => '<p>' . __( 'Post via email settings allow you to send your WordPress install an email with the content of your post. You must set up a secret e-mail account with POP3 access to use this, and any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret.' ) . '</p>',
 
30
                'content' => '<p>' . __( 'Post via email settings allow you to send your WordPress install an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret.' ) . '</p>',
31
31
        ) );
32
32
}
33
33
 
113
113
/** This filter is documented in wp-admin/options.php */
114
114
if ( apply_filters( 'enable_post_by_email_configuration', true ) ) {
115
115
?>
116
 
<h3 class="title"><?php _e('Post via e-mail') ?></h3>
117
 
<p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret. Here are three random strings you could use: <kbd>%s</kbd>, <kbd>%s</kbd>, <kbd>%s</kbd>.'), wp_generate_password(8, false), wp_generate_password(8, false), wp_generate_password(8, false)) ?></p>
 
116
<h2 class="title"><?php _e( 'Post via email' ) ?></h2>
 
117
<p><?php printf(__('To post to WordPress by email you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret. Here are three random strings you could use: <kbd>%s</kbd>, <kbd>%s</kbd>, <kbd>%s</kbd>.'), wp_generate_password(8, false), wp_generate_password(8, false), wp_generate_password(8, false)) ?></p>
118
118
 
119
119
<table class="form-table">
120
120
<tr>
156
156
 */
157
157
if ( apply_filters( 'enable_update_services_configuration', true ) ) {
158
158
?>
159
 
<h3 class="title"><?php _e('Update Services') ?></h3>
 
159
<h2 class="title"><?php _e( 'Update Services' ) ?></h2>
160
160
 
161
161
<?php if ( 1 == get_option('blog_public') ) : ?>
162
162