thank you.
i unchecked the discourage search engines from indexing this site box to ask search engines to index this site.
and added the line into my header.php but nothing has changed when i search on google.
<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta name=”robots” content=”index, follow” />
<meta name=”viewport” content=”width = device-width, initial-scale = 1.0, minimum-scale = 1.0″ />
<title><?php
global $page, $paged;
wp_title( ‘|’, true, ‘right’ );
bloginfo( ‘name’ );
$site_description = get_bloginfo( ‘description’, ‘display’ );
if ( $site_description && ( is_home() || is_front_page() ) )
echo ” | $site_description”;
if ( $paged >= 2 || $page >= 2 )
echo ‘ | ‘ . sprintf( __( ‘Page %s’, ‘ds-framework’ ), max( $paged, $page ) );
?></title>