Changeset 33774 for trunk/src/wp-admin/options-writing.php
- Timestamp:
- 08/28/2015 03:16:02 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-writing.php
r32974 r33774 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’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’s a good idea to keep this address very secret.' ) . '</p>', 31 31 ) ); 32 32 } … … 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’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 <h3 class="title"><?php _e('Post via email') ?></h3> 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’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">
Note: See TracChangeset
for help on using the changeset viewer.