Ejemplo n.º 1
0
 function build()
 {
     $head = new thesis_head();
     $head->title();
     $head->meta();
     $head->conditional_styles();
     $head->stylesheets();
     $head->links();
     $head->scripts();
     echo "<head " . apply_filters('thesis_head_profile', 'profile="http://gmpg.org/xfn/11"') . ">\n";
     #filter
     echo '<meta http-equiv="Content-Type" content="' . get_bloginfo('html_type') . '; charset=' . get_bloginfo('charset') . '" />' . "\n";
     #wp
     $head->output();
     wp_head();
     #hook #wp
     echo "</head>\n";
     $head->add_ons();
     // this is bogus and will disappear once I get this all figured out
 }