Skip to content

Instantly share code, notes, and snippets.

@malatestapunk
Created December 27, 2012 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malatestapunk/4386044 to your computer and use it in GitHub Desktop.
Save malatestapunk/4386044 to your computer and use it in GitHub Desktop.
Exclude new blog tagline when creating from template.
<?php
function blog_template_exclude_blog_tagline ($and) {
$and .= " AND `option_name` != 'blogdescription'";
return $and;
}
add_filter('blog_template_exclude_settings', 'blog_template_exclude_blog_tagline');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment