Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: enable_post_by_email_configuration

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
20      array(
21           'id'      => 'overview',
22           'title'   => __( 'Overview' ),
23           'content' => '<p>' . __( 'You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.' ) . '</p>' .
24                '<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>',
25      )
26 );
27
28 /** This filter is documented in wp-admin/options.php */
29 if ( apply_filters( 'enable_post_by_email_configuration', true ) ) {
30      get_current_screen()->add_help_tab(
31           array(
32                'id'      => 'options-postemail',
33                'title'   => __( 'Post Via Email' ),
34                'content' => '<p>' . __( 'Post via email settings allow you to send your WordPress installation 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>',
35           )
36      );
37 }
38
 
Line Code
129
130 <?php
131 do_settings_fields( 'writing', 'default' );
132 do_settings_fields( 'writing', 'remote_publishing' ); // A deprecated section.
133 ?>
134 </table>
135
136 <?php
137 /** This filter is documented in wp-admin/options.php */
138 if ( apply_filters( 'enable_post_by_email_configuration', true ) ) {
139      ?>
140 <h2 class="title"><?php _e( 'Post via email' ); ?></h2>
141 <p>
142      <?php
143      printf(
144           /* translators: 1, 2, 3: Examples of random email addresses. */
145           __( '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: %1$s, %2$s, %3$s.' ),
146           sprintf( '<kbd>%s</kbd>', wp_generate_password( 8, false ) ),
147           sprintf( '<kbd>%s</kbd>', wp_generate_password( 8, false ) ),