Skip to content

Instantly share code, notes, and snippets.

@andredelgado
Last active August 29, 2015 14:05
Show Gist options
  • Save andredelgado/9438778e91848d54dfcd to your computer and use it in GitHub Desktop.
Save andredelgado/9438778e91848d54dfcd to your computer and use it in GitHub Desktop.
wordpress basic theme structure
<!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>
<?php get_header(); ?>
<p>My first wordpress theme! YEY!</p>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment