Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: blog_privacy_selector

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

Line Code
191                          if ( has_action( 'blog_privacy_selector' ) ) {
192                               ?>
193                               <input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( 1, $blog_public ); ?> />
194                               <label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br/>
195                               <input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked( 0, $blog_public ); ?> />
196                               <label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label>
197                               <p class="description"><?php _e( 'Note: Neither of these options blocks access to your site &mdash; it is up to search engines to honor your request.' ); ?></p>
198                               <?php
199                               /** This action is documented in wp-admin/options-reading.php */
200                               do_action( 'blog_privacy_selector' );
201                          } else {
202                               ?>
203                               <label for="blog_public"><input name="blog_public" type="checkbox" id="blog_public" value="0" <?php checked( 0, $blog_public ); ?> />
204                               <?php _e( 'Discourage search engines from indexing this site' ); ?></label>
205                               <p class="description"><?php _e( 'It is up to search engines to honor this request.' ); ?></p>
206                          <?php } ?>
207                     </fieldset>
208                </td>
209           </tr>