Skip to content

Instantly share code, notes, and snippets.

View malatestapunk's full-sized avatar

malatestapunk

View GitHub Profile
@malatestapunk
malatestapunk / gist:4386044
Created December 27, 2012 06:45
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');