/**
 * meta-tag robots is switchable using a filter
 */
function thematic_show_robots()
{
    $display = TRUE;
    $display = apply_filters('thematic_show_robots', $display);
    if ($display) {
        thematic_create_robots();
    }
}
Esempio n. 2
0
/**
 * Switch creating the robots meta-tag
 * 
 * Removed after thematic_show_robots switch was merged with thematic_create_robots into thematic_meta_robots
 * 
 * @deprecated 2.0.0
 */
function thematic_show_robots()
{
    _deprecated_function(__FUNCTION__, '2.0.0', 'thematic_meta_robots');
    thematic_create_robots();
}