Created
December 17, 2011 05:17
-
-
Save utkarshkukreti/1489311 to your computer and use it in GitHub Desktop.
Theme Review Guidelines
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function mytheme_header() { | |
//doctype, title, head tag | |
wp_head(); | |
// close head tag | |
} | |
function mytheme_footer() { | |
// show real footer | |
wp_footer(); | |
//close body, html | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
mytheme_header(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment