hi i use ONLY yoast seo plugin and it said me:
Admin only notice: this page doesn't show a meta description because it doesn't have one, either write it for this page specifically or go into the SEO -> Titles menu and set up a template.
please help me to solve it,thanks
my website is: http://amniran.org
this is my header:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title>
<?php
wp_title( '|', true, 'right' );
// Add blog description in home page
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
?>
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<?php $site_description = get_bloginfo( 'description', 'display' ); ?>">
<meta name="author" content="Ali Rahmani">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo( 'name' ); ?>" href="<?php bloginfo( 'rss2_url' ); ?>" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body <?php body_class();?>>
<?php if (of_get_option('show_general_support')) { ?>
<!-- Login Client -->
<div class="jBar">
<div class="container">
<div class="row-fluid">
<div class="offset2 span4">
<h1><?php echo of_get_option('support_title');?></h1>
<form id="frmlogin" name="frmlogin" action="<?php echo home_url()?>/customer/?ccce=dologin" method="post" >
<input type="hidden" value="772275d5c1b5e97d7484c4dac28c54beb97e8390" name="token">
<input name="username" type="email" placeholder="<?php echo of_get_option('support_mail');?>" required>
<input name="password" type="password" placeholder="<?php echo of_get_option('support_pass');?>" required>
<input type="submit" class="botton" value="<?php echo of_get_option('support_btn');?>">
</form>
</div>
<div class="span4 contact_info">
<h1><?php echo of_get_option('contact_title');?></h1>
<ul>
<li><span><?php echo of_get_option('call_field');?></span><?php echo of_get_option('call_text');?></li>
<li><span><?php echo of_get_option('mail_field');?></span><?php echo of_get_option('mail_text');?></li>
<li><span><?php echo of_get_option('location_field');?></span><?php echo of_get_option('location_text');?></li>
</ul>
</div>
<p class="jTrigger downarrow"><?php echo of_get_option('support_close_btn');?></p>
</div>
</div>
</div>
<span class="jRibbon jTrigger up"><?php echo of_get_option('support_show_btn');?></span>
<div class="line"></div>
<?php } ?>
<!-- End Login Client -->
<!-- Header -->
<header>
<!-- Info Head -->
<section class="container info_head">
<ul>
<li><i class="icon-headphones"></i><?php echo of_get_option('info_phone');?></li>
<li><i class="icon-comment"></i><a>"><?php echo of_get_option('info_chat');?></a></li>
<li><i class="icon-globe"></i><a>"><?php echo of_get_option('info_lenguage');?></a></li>
</ul>
</section>
<!-- Info Head -->
<!-- Nav -->
<nav class="gray">
<div class="container">
<div class="row-fluid">
<!-- Logo -->
<div class="logo span3">
<?php if(of_get_option('enable_text_logo') == 1) { ?>
<span class="bg_logo"></span>
<?php
$logo_link = of_get_option('logo_link');
$logo_title = of_get_option('logo_title');
$pos = stripos($logo_title,' ');
if(of_get_option('show_general_logo') == 1){
echo '<a href="'.$logo_link.'"><h1>'.substr($logo_title,0,$pos).' <span>'.substr($logo_title,$pos,strlen($logo_title)).'</span></h1></a>';
}
} ?>
<?php
if(of_get_option('enable_image_logo') == 1) {
if(of_get_option('show_general_logo')) { ?>
<a>">
<img class="logo" src="<?php echo of_get_option('logo_img');?>" alt="" border="0" /></a>
<?php }
}?>
</div>
<!-- End Logo -->
<div class="span9">
<?php
if(of_get_option('show_header_menu'))
{
wp_nav_menu(
array(
'theme_location' => 'HeaderMenu',
'container' => 'false',
'menu_class' => 'sf-menu',
'menu_id' => 'menu'
));
}
?>
</div>
</div>
</div>
</nav>
<!-- End Nav -->