產品展示用到文章和縮圖功能
#相關推薦:《WordPress教學》
實作步驟:
一、建立分類
後台建立文章分類:產品中心
二、開啟縮圖功能
在主題的functions.php中,加入一段程式碼,程式碼如下:
add_theme_support( 'post-thumbnails' );
更多設定請參考:
http://www.cnblogs.com/tinyphp/p/6359167.html
三、新增文章並設定縮圖
四:呼叫該分類資訊、文章標題與縮圖
<div class="section sectionL"> <?php $product_term =get_term_by('name','产品中心',category); $product_term_id=$product_term->term_id; $product_link=get_term_link($product_term_id,'category'); ?> <h2> <a href="<?php echo $product_link?>">产品中心</a> <span><a href="<?php echo $product_link;?>"></a></span> </h2> <ul> <?php $product_query=new WP_Query(array( 'cat'=>2, 'posts_per_page'=>8 )); if($product_query->have_posts()) : while($product_query->have_posts()) :$product_query->the_post(); ?> <li> <a href="<?php the_permalink();?>"> <?php if ( has_post_thumbnail() ) : ?> <?php the_post_thumbnail( 'thumbnail' ); ?> <?php else: ?> //显示默认图片 <?php endif; ?> </a> <h3><a href="<?php the_permalink();?>"><?php the_title();?>dd</a></h3> </li> <?php endwhile;?> <?php endif;?> </ul> </div>
以上是wordpress如何做產品展示頁的詳細內容。更多資訊請關注PHP中文網其他相關文章!