Skip to content

Instantly share code, notes, and snippets.

@hitsujixgit
Created June 16, 2014 01:03
Show Gist options
  • Save hitsujixgit/78aab9448d53b55ac300 to your computer and use it in GitHub Desktop.
Save hitsujixgit/78aab9448d53b55ac300 to your computer and use it in GitHub Desktop.
Wordpress sample theme for training. #02
<!DOCTYPE html>
<html>
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
</head>
<body>
<h1><?php bloginfo('name'); ?></h1>
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment