Cannot upgrade to HTML 5
  • haymanpl July 2011

    /** Add support for HTML5 **/ /* Output an HTML5 document type */ function html5_doctype($content) { return ''; } add_filter('thesis_doctype', 'html5_doctype'); /* Remove PROFILE attribute from HEAD tag */ function html5_profile_removal($content) { return ''; } add_filter('thesis_head_profile', 'html5_profile_removal');


  • thesify July 2011

    Your code seems to be incorrect. Try


    add_filter( 'thesis_doctype', 'thesify_html5_doctype' );
    function thesify_html5_doctype() {
    return '<!DOCTYPE html>';
    }

    add_filter( 'thesis_head_profile', 'thesify_html5_head_profile' );
    function thesify_html5_head_profile() {
    return '';
    }

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In Apply for Membership