ホームページ  >  記事  >  CMS チュートリアル  >  WordPressで商品表示ページを作成する方法

WordPressで商品表示ページを作成する方法

尚
オリジナル
2019-07-19 16:28:565407ブラウズ

WordPressで商品表示ページを作成する方法

#WordPress で商品表示ページを実装する手順は次のとおりです。:

1.カテゴリ

バックグラウンドで記事カテゴリを作成します: Product Center

WordPressで商品表示ページを作成する方法

#2. サムネイル機能をオンにします

テーマの関数に、php でコードを追加します。コードは次のとおりです:

add_theme_support( 'post-thumbnails' );

3. 記事を追加し、サムネイルを設定します

4.

分類情報、記事タイトル、サムネイルを呼び出します

<div class="section sectionL">

<?php
    $product_term =get_term_by(&#39;name&#39;,&#39;产品中心&#39;,category);
    $product_term_id=$product_term->term_id;
    $product_link=get_term_link($product_term_id,&#39;category&#39;);
?>
    <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(
            &#39;cat&#39;=>2,
            &#39;posts_per_page&#39;=>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( &#39;thumbnail&#39; ); ?>
            <?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 チュートリアルをご覧ください。

学べるコラム!

以上がWordPressで商品表示ページを作成する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。