Skip to content

Instantly share code, notes, and snippets.

@utkarshkukreti
Created December 17, 2011 05:17
Show Gist options
  • Save utkarshkukreti/1489311 to your computer and use it in GitHub Desktop.
Save utkarshkukreti/1489311 to your computer and use it in GitHub Desktop.
Theme Review Guidelines
<?php
function mytheme_header() {
//doctype, title, head tag
wp_head();
// close head tag
}
function mytheme_footer() {
// show real footer
wp_footer();
//close body, html
}
<?php
mytheme_header();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment