Last active
August 29, 2015 14:05
-
-
Save andredelgado/246dc2802ec80227e041 to your computer and use it in GitHub Desktop.
Basic structure of Wordpress Theme's
This file contains hidden or 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
<!DOCYTPE html> | |
<html> | |
<head> | |
<title>Wodpress for Dummys</title> | |
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="screen" /> | |
</head> | |
<body> | |
<p>My first wordpress theme! YEY!</p> | |
</body> | |
</html> |
This file contains hidden or 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
/* | |
Theme Name: My first theme | |
Theme URI: http://andreny.com/ | |
Author: André Delgado | |
Author URI: http://andreny.com/ | |
Description: My first wordpress theme | |
Version: 1.0 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment