Skip to content

Instantly share code, notes, and snippets.

@seebz
Created November 28, 2012 14:57
Show Gist options
  • Save seebz/4161791 to your computer and use it in GitHub Desktop.
Save seebz/4161791 to your computer and use it in GitHub Desktop.
WP admin_notice_blog_norobots
<?php
function admin_notice_blog_norobots()
{
if ( ! get_option('blog_public') && current_user_can('manage_options'))
{
printf('<div class="error">%s</div>',
"<p><strong>Attention</strong>, le site n'est actuellement pas indexable par les moteurs de recherche !</p>"
);
}
}
add_action('admin_notices', 'admin_notice_blog_norobots');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment