예제 #1
0
/**
 * Created 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_create_robots()
{
    _deprecated_function(__FUNCTION__, '2.0.0', 'thematic_meta_robots');
    thematic_meta_robots();
}
예제 #2
0
// Creates the doctype
thematic_doctype();
// Opens the html tag with attributes
thematic_html();
// Opens the head
thematic_head();
// Create the meta charset
thematic_meta_charset();
// Create the meta viewport if theme supports it
thematic_meta_viewport();
// Create the title tag
thematic_doctitle();
// Create the meta description
thematic_meta_description();
// Create the tag <meta name="robots"
thematic_meta_robots();
// Create pingback adress
thematic_show_pingback();
/* Loads Thematic's stylesheet and scripts
 * Calling wp_head() is required to provide plugins and child themes
 * the ability to insert markup within the <head> tag.
 */
wp_head();
// Filter provided for altering output of the head closing element
echo apply_filters('thematic_close_head', '</head>' . "\n");
// Create the body element and dynamic body classes
thematic_body();
// Action hook to place content before opening #wrapper
thematic_before();
// Filter provided for removing output of wrapping element follows the body tag
echo apply_filters('thematic_open_wrapper', '<div id="wrapper" class="hfeed site-wrapper">');