Skip to content

Instantly share code, notes, and snippets.

@garagemwp
Created June 16, 2018 06:16
Show Gist options
  • Save garagemwp/fde440018147c2268f6963a0199dce91 to your computer and use it in GitHub Desktop.
Save garagemwp/fde440018147c2268f6963a0199dce91 to your computer and use it in GitHub Desktop.
Exemplo de um arquivo de template header de um tema de WordPress
<!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(); ?>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment