Changeset 22380
- Timestamp:
- 11/05/2012 09:19:15 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-writing.php
r22006 r22380 29 29 ) ); 30 30 31 if ( is_multisite() ) { 32 $post_email_help = '<p>' . __('Due to security issues, you cannot use Post By Email on Multisite Installs.') . '</p>'; 33 } else { 34 $post_email_help = '<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>'; 31 if ( apply_filters( 'enable_post_by_email_configuration', true ) ) { 32 get_current_screen()->add_help_tab( array( 33 'id' => 'options-postemail', 34 'title' => __( 'Post Via Email' ), 35 '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>', 36 ) ); 35 37 } 36 38 37 get_current_screen()->add_help_tab( array( 38 'id' => 'options-postemail', 39 'title' => __('Post Via Email'), 40 'content' => $post_email_help, 41 ) ); 42 43 get_current_screen()->add_help_tab( array( 44 'id' => 'options-remote', 45 'title' => __('Remote Publishing'), 46 'content' => '<p>' . __('Remote Publishing allows you to use an external editor (like the iOS or Android app) to write your posts.') . '</p>', 47 ) ); 48 49 get_current_screen()->add_help_tab( array( 50 'id' => 'options-services', 51 'title' => __('Update Services'), 52 'content' => '<p>' . __('If desired, WordPress will automatically alert various services of your new posts.') . '</p>', 53 ) ); 39 if ( apply_filters( 'enable_update_services_configuration', true ) ) { 40 get_current_screen()->add_help_tab( array( 41 'id' => 'options-services', 42 'title' => __( 'Update Services' ), 43 'content' => $update_services_help, 44 ) ); 45 } 54 46 55 47 get_current_screen()->set_help_sidebar(
Note: See TracChangeset
for help on using the changeset viewer.