How to add Search Keyword on Search Page ?
My wordpress with custom search script but i can't/don't know how to add search "KEYWORD" in the search page meta tag ....
any one can help ?
my page.php code :
PHP Code:
<?php get_header();?>
<!-- ************************************************************* -->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="postid" id="post-<?php the_ID(); ?>">
<div class="story">
<!-- Title ************************************************************* -->
<div class="pageTitle"><h3><?php the_title(); ?></h3></div>
<!-- Close Title ************************************************************* -->
<!-- Main Content Text ************************************************************* -->
<div class="storyContent">
<?php if ($type == 'excerpt' ) {the_excerpt();} else {the_content();} ?>
</div>
<!-- Close Main Content Text ************************************************************* -->
</div>
</div><!-- close postid-->
<?php endwhile; else: ?>
<div class="error"><?php _e('Sorry, no posts matched your criteria.'); ?></div>
<?php endif; ?>
<!-- ************************************************************* -->
</div><!-- close innerContent -->
<?php get_sidebar();?>
<?php get_footer(); ?>