Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter jaybee1012

    (@jaybee1012)

    <?php get_header(); ?>
    <div class="grid8">
    <h1 class="entry-title"><?php  printf( __( 'Kết quả tìm kiếm cho : %s', 'vnh' ), '<span>' . get_search_query() . '</span>' ); ?></h1><?php  	while (have_posts()) : the_post();     get_template_part( 'loop', 'search' );    endwhile;	?>
    	<?php
    	while(have_posts()):the_post();
    	$thumbnail = '';
    	$thumbnail = get_thumb(get_the_ID());
    	?>
    	<div class="grid4">
    		<div class="categorybox cat" id="<?php echo get_the_ID();?>">
    			<a>" title="<?php echo the_title();?>"><img class="cat_post_img" src="<?php echo $thumbnail;?>" title="<?php the_title();?>" /></a>
    			<h2><a>" title="<?php echo the_title();?>"><?php the_title();?></a></h2>
    			<p class="desc"><?php the_content_rss('…',false,'',20);?></p>
    		</div> <!-- /categorybox -->
    	</div> <!-- /grid4 -->
    	<?php
    	endwhile;?>
    	<?php if (function_exists('wp_corenavi')) wp_corenavi(); ?>
    </div> <!-- /grid8 -->
    <div class="grid4">
    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Ads Category Sidebar') ) : ?><?php endif; ?>
    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Widget Category Sidebar') ) : ?><?php endif; ?>
    </div>
    <div class="clear"></div>
    <?php get_footer();?>

    This is my search.php code. Can you check it for me ?

Viewing 1 replies (of 1 total)