Salute a tutti,
premesso che sono un neofita di php, stavo leggendo alcuni post su come aumentare la visibilità del proprio sito. Ho visto che ci sono alcune indicazioni per l'utilizzo dei meta tag e a tal proposito ho cercato di utilizzare un meta tag generator da poter inserire tra i tag <head></head>.
Il dubbio che mi sono posto utilizzando un tema di wordpress (Pressplay) nella sezione header.php non capisco dove posizionare i meta tag. Ovvero chiaro che vanno tra i due 'head', ma non capisco in che posizione.
Chiedo scusa per la lunghezza del messaggio. Qui l'esempio:
Codice HTML:
<head>
[B]<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />[/B]
[B]<title><?php wp_title('|', true, 'right'); ?> <?php bloginfo('name'); ?></title>
<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url') ?>" />[/B]
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-tabs');
wp_enqueue_script('jquery-tabbox-pressplay', get_bloginfo('template_url') . '/library/tabs.js', array('jquery-ui-core','jquery-ui-tabs')); ?>
<?php wp_head(); // for plugins ?>
<?php // initialize Theme Options variables
global $options;
foreach ($options as $value){
if (get_option( $value['id'] ) === FALSE){
$$value['id'] = $value['std'];
} else {
$$value['id'] = get_option( $value['id'] );
}
} ?><style type="text/css">
<?php if($pp_sidebar == "left_sidebar"){ ?>
div#content { float:right; }
<?php }
if($pp_width == "stretched_width"){ ?>
div#wrapper { width:100%; }
div#menu { width:100% }
div#title-headers { width:100%; }
div#content { width:65%; }
div.post-top-meta { background-image:none; }
div.top-post-body { height:0; }
div#sidebar { width:29%; }
div.widget { width:100%; }
div#footer-container { width:100%; }
div.archive-banner, div.archive-banner-bottom {
background-image:none;
background-color:#fd7416;
border:1px outset #db5204;
}
div.archive-banner { border-bottom:0; }
div.archive-banner-bottom { border-top:0; }
<?php }
if(($pp_width == "stretched_width") && ($pp_sidebar == "right_sidebar")){ ?>
div#sidebar { padding-right:20px; }
<?php } elseif (($pp_width == "stretched_width") && ($pp_sidebar == "left_sidebar")){ ?>
div#sidebar { padding-left:20px; }
<?php } ?>
<?php if($pp_header_background_url != ""){ ?>
div#header { background-image:url('<?php echo $pp_header_background_url; ?>'); }
<?php }
if($pp_header_logo_url != ""){ ?>
div#title-logo {
width:80px;
height:80px;
float:left;
margin:15px -15px 20px 20px;
background-image:url('<?php echo $pp_header_logo_url; ?>');
background-repeat:no-repeat;
}
<?php }
if($pp_header_title_url != ""){ ?>
h1#site-title { display:none; }
h4#site-blurb { display:none; }
div#title-container {
float:left;
margin:15px 0 0 25px;
width:800px;
height:80px;
background-image:url('<?php echo $pp_header_title_url; ?>');
background-repeat:no-repeat;
}
<?php } ?></style>
</head>