درود دوستان
اساطید لطف می کنن که بگن مشکل از کجاست؟
کلیک کنید
درود دوستان
اساطید لطف می کنن که بگن مشکل از کجاست؟
کلیک کنید
کد ها قالب مال همین بخشی که جستوجو هست رو بزار
<?php get_header(); ?>
<!-- BEGIN content -->
<div id="content">
<h2 class="title">Search Results for <strong><?php the_search_query(); ?></strong></h2>
<?php
if (have_posts()) :
while (have_posts()) : the_post();
?>
<!-- begin post -->
<div class="post">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="date">by <?php the_author_posts_link(); ?>, <?php the_time('F j, Y') ?></p>
<p class="categories">in <?php the_category(', ') ?></p>
<div class="break"></div>
<a class="thumb" href="<?php the_permalink(); ?>"><?php dp_attachment_image($post->ID, 'thumbnail', 'alt="' . $post->post_title . '"'); ?></a>
<?php the_excerpt(); ?>
<p class="tags"><?php the_tags('Tags: ', ', ', ''); ?> </p>
</div>
<!-- end post -->
<?php endwhile; ?>
<p class="postnav">
<?php next_posts_link('« Older Entries'); ?>
<?php previous_posts_link('Newer Entries »'); ?>
</p>
<?php else : ?>
<div class="notfound">
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that is not here.</p>
</div>
<?php endif; ?>
</div>
<!-- END content -->
<?php get_sidebar(); get_footer(); ?>
<!-- begin search -->
<div class="box">
<h2>جستجو</h2>
<form action="<?php echo get_option('home'); ?>/">
<input type="text" name="s" value="<?php the_search_query(); ?>" />
<button type="submit"></button>
</form>
</div>
<!-- end search -->