首页 文章

“>”关闭wordpress中的php标签

提问于
浏览
0

我在使用wordpress时遇到了问题 . 我在线编辑wordpress页面并在其中使用数组,所以当我在我的页面上写这个时,

<section id="recent">
    <h1>Recently Added</h1>
    <ul class="row-fluid">
    <?php
        $args = array( 'post_type' => 'product', 'stock' => 1, 'posts_per_page' => 4, 'orderby' =>'date','order' => 'DESC' );
        $loop = new WP_Query( $args );
        while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
            <li class="span3">    
                    <a id="id-<?php the_id(); ?>" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
                        <?php if (has_post_thumbnail( $loop->post->ID )) echo get_the_post_thumbnail($loop->post->ID, 'shop_catalog'); else echo '<img src="'.woocommerce_placeholder_img_src().'" alt="Placeholder" width="65px" height="115px" />'; ?>
                        <h3><?php the_title(); ?></h3>
                           <span class="price"><?php echo $product->get_price_html(); ?></span>
                    </a>
                    <?php woocommerce_template_loop_add_to_cart( $loop->post, $product ); ?>
            </li><!-- /span3 -->
        <?php endwhile; ?>
        <?php wp_reset_query(); ?>
    </ul><!-- /row-fluid -->
</section><!-- /recent -->

结果是,页面显示的是我想要的,

'product','stock'=> 1,'posts_per_page'=> 4,'orderby'=>'date','order'=>'DESC'); $ loop = new WP_Query($ args); while($ loop-> have_posts()):$ loop-> the_post();全球$产品; ?>'; ?> get_price_html(); ?> post,$ product); ?>

请帮助我了解发生了什么,以及如何解决它 . 至少我知道在这部分代码中,

$args = array( 'post_type' => 'product', 'stock' => 1, 'posts_per_page' => 4, 'orderby' =>'date','order' => 'DESC' );

第一个'>'符号,关闭php标签

1 回答

  • 0

    我认为你应该在这一行的if / else子句中使用花括号:

    <?php if (has_post_thumbnail( $loop->post->ID )) { echo get_the_post_thumbnail($loop->post->ID, 'shop_catalog'); } else { echo '<img src="'.woocommerce_placeholder_img_src().'" alt="Placeholder" width="65px" height="115px" />'; } ?>
    

相关问题