wordpressでECサイト作成しています。
welthemeのTokyo darkというthemeで作成していますが、
カテゴリーごとのヘッダー画像を設定した際に以下のエラーが発生しました。
Parse error: syntax error, unexpected 'endwhile' (T_ENDWHILE) in /Users/apple/Local Sites/tera/app/public/wp-content/themes/welcart_default/category.php on line 42
原因はこれなのかと思っているのですが、
エラー内容
何をどう触ったらいいのかがわからないです。
エラー部分のarchive.phpが以下です。
archivephp
1<?php 2/** 3 * <meta content="charset=UTF-8"> 4 * @package Welcart 5 * @subpackage Welcart Default Theme 6 */ 7get_header(); 8?> 9 10<div id="content" class="two-column"> 11<div class="catbox"> 12 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 13 <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> 14 <?php while (have_posts()) : the_post(); usces_the_item(); ?> 15 <div class=”entry”> 16 <?php if ( usces_is_item() ) : ?> 17 <dl> 18 <dt>商品名と商品コード</dt> 19 <dd><?php usces_the_itemName(); ?>:<?php usces_the_itemCode(); ?></dd> 20 <dt>メイン画像(商品詳細ページへのリンク)</dt> 21 <dd><a href=”<?php the_permalink(); ?>”><?php usces_the_itemImage(0, 150, 150); ?></a></dd> 22 <dt>サブ画像(写真へのリンク)</dt> 23 <dd><a href=”<?php usces_the_itemImageURL(1); ?>”><?php usces_the_itemImage(1, 100, 100); ?></a><dd> 24 <dt>記事本文</dt> 25 <!-- <!–直接echoします。次期バージョンでは usces_the_content() を追加予定–> --> 26 <dd><?php echo $post->post_content; ?></dd> 27 <dt>抜粋</dt> 28 <!-- <!–直接echoします。次期バージョンでは usces_the_excerpt() を追加予定–> --> 29 <dd><?php echo $post->post_excerpt; ?></dd> 30 <?php usces_have_skus(); ?> 31 <!-- <!– SKU情報取得準備タグ –> --> 32 <dt>在庫ステイタスと価格など抜粋</dt> 33 <dd><span class=”zaikostatus”><?php usces_the_itemZaiko(); ?></span> <span class=”price”><?php usces_the_itemPrice(); ?>円</span><span class=”tax”><?php usces_guid_tax(); ?></span></dd> 34 </dl> 35 <?php else : ?> 36 <h2 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> 37 <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?> <?php edit_post_link(__('Edit This')); ?></div> 38 <div class="storycontent"> 39 <?php the_excerpt(); ?> 40 </div> 41 </div> 42 <?php endwhile; else: ?> 43 <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> 44 <?php endif; ?> 45 <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?> 46</div><!-- end of catbox --> 47</div><!-- end of content --> 48 49<?php get_sidebar( 'other' ); ?> 50 51<?php get_footer(); ?> 52
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/25 19:35