Esempio n. 1
0
/**
 * Switch for creating the meta-tag description
 * 
 * Removed after thematic_show_description switch was merged with thematic_create_description into thematic_meta_description
 * 
 * @deprecated 2.0.0
 */
function thematic_create_description()
{
    _deprecated_function(__FUNCTION__, '2.0.0', 'thematic_meta_description');
    thematic_meta_description();
}
Esempio n. 2
0
 * @subpackage Templates
 */
// 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();