当前位置: 代码迷 >> PHP >> wordpress,该怎么处理
  详细解决方案

wordpress,该怎么处理

热度:953   发布时间:2013-08-01 15:23:18.0
wordpress





<?php
/**
 * The template for displaying Category Archive pages.
 *
 * @package WordPress
 * @subpackage Twenty_Ten
 * @since Twenty Ten 1.0
 */

get_header(); ?>

<!-- content -->    
<div id="content" class="clearfix" style="padding:5px 0;">
    
  <div class="inbg" style="background:none;">
        <!--Title-->
      <div class="titles m2">
        
      
       <div class="title_t">商家在线</div>


      
        </div>
        <!--Title-->  
        
        
            <div class="sjia">
        
      <ul>
  
  
<?php $my_query = new WP_Query('cat=27'); ?>
  <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li><a href="company.php?id=<?php the_author(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php echo the_post_thumbnail();?></a> </li>
  <?php endwhile; ?>   
  
  
  
    </ul>
    
   </div>
     
     
     
                <!-- 页码 -->
    <div class="page clearfix"><?php wp_pagenavi(); ?></div>
    <!-- 页码 -->

    
    
    
    
   </ul>
       
       
       
       </div>


</div>
<!-- Container -->  
  相关解决方案