/**
 * meta-tag description is switchable using a filter
 */
function thematic_show_description()
{
    $display = TRUE;
    $display = apply_filters('thematic_show_description', $display);
    if ($display) {
        thematic_create_description();
    }
}
Ejemplo n.º 2
0
/**
 * Switch for displaying the meta-tag description
 * Removed after thematic_show_description switch was merged with thematic_create_description into thematic_meta_description
 * 
 * Filter: thematic_show_description
 * 
 * @deprecated 2.0.0
 */
function thematic_show_description()
{
    _deprecated_function(__FUNCTION__, '2.0.0', 'thematic_meta_description');
    thematic_create_description();
}