使用不同的页面模板进行wordpress电子商务

时间:2012-11-23 19:04:58

标签: php wordpress wordpress-plugin wordpress-theming

我希望能够在与正常index.php页面不同的页面模板中显示wordpress插件的页面:'wp e-commerce'。

购物车的示例网址为:products-page / checkout /

但是,它只是将该内容放入index.php模板中。有没有办法创建一个不同的页面模板或if / else语句,根据用户所在的电子商务页面进行更改,例如本机wordpress层次结构如何工作?

谢谢!

1 个答案:

答案 0 :(得分:0)

我发现您可以使用条件语句来定位页面标题,然后使用页面标题作为结帐页面并创建:

<?php
if (is_page( 'Checkout' ) ) {
    if ( have_posts() ) : while ( have_posts() ) : the_post();
        the_content();
        endwhile; else: ?>
    <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php }   
else{ ?>
    <!--Normal Page Content-->
<?php  } ?>