ホームページ > 記事 > CMS チュートリアル > WordPressで商品表示ページを作成する方法
#WordPress で商品表示ページを実装する手順は次のとおりです。:
1.カテゴリ
バックグラウンドで記事カテゴリを作成します: Product Center #2. サムネイル機能をオンにしますテーマの関数に、php でコードを追加します。コードは次のとおりです:
add_theme_support( 'post-thumbnails' );3. 記事を追加し、サムネイルを設定します
4.
分類情報、記事タイトル、サムネイルを呼び出します <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 関連の技術記事については、
以上がWordPressで商品表示ページを作成する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。