Skip to content

Instantly share code, notes, and snippets.

@garagemwp
Last active June 16, 2018 04:09
Show Gist options
  • Save garagemwp/782c96a521c3af8aad18d4f11a0f66e0 to your computer and use it in GitHub Desktop.
Save garagemwp/782c96a521c3af8aad18d4f11a0f66e0 to your computer and use it in GitHub Desktop.
Estudo de templates para WordPress: Página inicial parte #1
<!DOCTYPE html>
<html <?php language_attributes(); ?> >
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<title><?php bloginfo( 'name' ); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page" class="site">
<header>
<h1><?php bloginfo( 'name' ); ?></h1>
</header>
</div>
<?php wp_footer(); ?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment