privacy_on_link_title and privacy_on_link_text filters to allow privacy plugins to customize privacy-on-link
git-svn-id: http://svn.automattic.com/wordpress/trunk@14237 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d74a32fb0d
commit
c256a99fc2
|
@ -109,8 +109,8 @@ if ( function_exists('mb_strlen') ) {
|
|||
<a href="<?php echo trailingslashit( get_bloginfo( 'url' ) ); ?>" title="<?php esc_attr_e('Visit Site') ?>">
|
||||
<span id="site-title"><?php echo $blog_name ?></span>
|
||||
</a>
|
||||
<?php if ( current_user_can('manage_options') && !get_option('blog_public') ): ?>
|
||||
<a id="privacy-on-link" href="options-privacy.php" title="<?php esc_attr_e('Your site is asking search engines not to index its content') ?>"><?php _e('Search Engines Blocked') ?></a>
|
||||
<?php if ( current_user_can('manage_options') && '1' != get_option('blog_public') ): ?>
|
||||
<a id="privacy-on-link" href="options-privacy.php" title="<?php echo esc_attr( apply_filters('privacy_on_link_title', __('Your site is asking search engines not to index its content') ) ); ?>"><?php echo apply_filters('privacy_on_link_text', __('Search Engines Blocked') ); ?></a>
|
||||
<?php endif; ?>
|
||||
</h1>
|
||||
|
||||
|
|
Loading…
Reference in New Issue