Skip to content

Instantly share code, notes, and snippets.

@Nerd-Rush
Last active January 11, 2025 02:56
Show Gist options
  • Save Nerd-Rush/cdb8e611478d9b554afc845fe23784af to your computer and use it in GitHub Desktop.
Save Nerd-Rush/cdb8e611478d9b554afc845fe23784af to your computer and use it in GitHub Desktop.
Discourage Search Engine Alert - WordPress
add_action('admin_head', 'custom_admin_bar_color');
add_action('wp_head', 'custom_admin_bar_color');
function custom_admin_bar_color() {
// Check if the "Discourage search engines from indexing this site" setting is enabled
if (get_option('blog_public') == '0') {
// Output CSS to change the admin bar color
echo '<style>
#wpadminbar {
border-top: 5px solid #cf0000 !important;
background: #650000 !important;
}
</style>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment