Google Vertication HTML Location
-
Can someone please tell me were im suppose to put this damn google verification – im using the vintage camera theme – ive tried putting it after the “head” which is located after the language attributes – i also tried putting it after the “head” before the “body” where is says php body_class still no luck! help please
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id=”main”>
*
* @package Vintage Camera
* @since Vintage Camera 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
<meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=10″ />
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;wp_title( ‘|’, true, ‘right’ );
// Add the blog name.
bloginfo( ‘name’ );// Add the blog description for the home/front page.
$site_description = get_bloginfo( ‘description’, ‘display’ );
if ( $site_description && ( is_home() || is_front_page() ) )
echo ” | $site_description”;// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ‘ | ‘ . sprintf( __( ‘Page %s’, ‘vintage-camera’ ), max( $paged, $page ) );?></title>
<link rel=”profile” href=”http://gmpg.org/xfn/11″ />
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
<!–[if lt IE 9]>
<script src=”<?php echo get_template_directory_uri(); ?>/js/html5.js” type=”text/javascript”></script>
<![endif]–><?php wp_head(); ?>
</head><body <?php body_class(); ?>>
<div id=”page” class=”hfeed site”>
<?php do_action( ‘before’ ); ?>
<header id=”masthead” class=”site-header” role=”banner”>
<hgroup>
<?php $header_image = get_custom_header();
if ( ! empty( $header_image ) ) { ?>
” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”>
<img src=”<?php echo $header_image->url; ?>” width=”<?php echo $header_image->width; ?>” height=”<?php echo $header_image->height; ?>” alt=”” />
<?php } // if ( ! empty( $header_image ) ) ?>
<h1 class=”site-title”>
” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?>
</h1>
<div class=”divider”></div>
<h2 class=”site-description”>
<?php bloginfo( ‘description’ ); ?>
</h2><div class=”ribbon-left”></div>
<div class=”blackbar”></div>
<div class=”ribbon-right”></div>
</hgroup>
</header><!– #masthead .site-header –><div id=”main”>
The topic ‘Google Vertication HTML Location’ is closed to new replies.