本文整理汇总了PHP中wpsc_category_class函数的典型用法代码示例。如果您正苦于以下问题:PHP wpsc_category_class函数的具体用法?PHP wpsc_category_class怎么用?PHP wpsc_category_class使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wpsc_category_class函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: while
<div class="wpsc_default_product_list">
<?php
/** start the product loop here */
?>
<?php
while (wpsc_have_products()) {
wpsc_the_product();
?>
<div class="default_product_display product_view_<?php
echo wpsc_the_product_id();
?>
<?php
echo wpsc_category_class();
?>
group">
<?php
if (wpsc_show_thumbnails()) {
?>
<div class="imagecol" style="width:<?php
echo $image_width;
?>
px;" id="imagecol_<?php
echo wpsc_the_product_id();
?>
">
<?php
if (wpsc_the_product_thumbnail()) {
?>
开发者ID:B1aZer,项目名称:yaltatoys_wp,代码行数:29,代码来源:wpsc-products_page.php
示例2: if
<?php endif; ?>
<!-- Start Pagination -->
<?php if ( ( get_option( 'use_pagination' ) == 1 && ( get_option( 'wpsc_page_number_position' ) == 1 || get_option( 'wpsc_page_number_position' ) == 3 ) ) ) : ?>
<div class="wpsc_page_numbers">
<?php if ( wpsc_has_pages() ) : ?>
<div class="pagination-products-showing">Showing <?php echo wpsc_showing_products(); ?> of <?php echo wpsc_total_product_count(); ?> products</div>
<div class="pagination-pages"><?php echo wpsc_first_products_link( '« First', true ); ?> <?php echo wpsc_previous_products_link( '« Previous', true ); ?> <?php echo wpsc_pagination( 10 ); ?> <?php echo wpsc_next_products_link( 'Next »', true ); ?> <?php echo wpsc_last_products_link( 'Last »', true ); ?></div>
<?php endif; ?>
</div>
<?php endif; ?>
<!-- End Pagination -->
<table class="list_productdisplay <?php echo wpsc_category_class(); ?>">
<?php /** start the product loop here */?>
<?php $alt = 0; ?>
<?php while (wpsc_have_products()) : wpsc_the_product(); ?>
<?php
$alt++;
if ($alt %2 == 1) { $alt_class = 'alt'; } else { $alt_class = ''; }
?>
<tr class="product_view_<?php echo wpsc_the_product_id(); ?> <?php echo $alt_class;?>">
<td style="width: 9px;">
</td>
<td width="55%">
<a class="wpsc_product_title" href="<?php echo wpsc_the_product_permalink(); ?>">
<strong><?php echo wpsc_the_product_title(); ?></strong>
</a>
开发者ID:nerdfiles,项目名称:sideshowtramps.com,代码行数:31,代码来源:list_view.php
示例3: if
<!-- Start Pagination -->
<?php if ( ( get_option( 'use_pagination' ) == 1 && ( get_option( 'wpsc_page_number_position' ) == 1 || get_option( 'wpsc_page_number_position' ) == 3 ) ) ) : ?>
<div class="wpsc_page_numbers">
<?php if ( wpsc_has_pages() ) : ?>
Page <?php echo wpsc_showing_products_page(); ?>: <?php echo wpsc_first_products_link( '« First', true ); ?> <?php echo wpsc_previous_products_link( '« Previous', true ); ?> <?php echo wpsc_pagination( 10 ); ?> <?php echo wpsc_next_products_link( 'Next »', true ); ?> <?php echo wpsc_last_products_link( 'Last »', true ); ?>
<?php else : ?>
Showing all <?php echo wpsc_total_product_count(); ?> products
<?php endif; ?>
</div>
<?php endif; ?>
<!-- End Pagination -->
<?php /** start the product loop here */?>
<?php while (wpsc_have_products()) : wpsc_the_product(); ?>
<div class="productdisplay default_product_display product_view_<?php echo wpsc_the_product_id(); ?> <?php echo wpsc_category_class(); ?>">
<div class="textcol">
<?php if(get_option('show_thumbnails')) :?>
<div class="imagecol">
<?php if(wpsc_the_product_thumbnail()) :?>
<a rel="<?php echo str_replace(array(" ", '"',"'", '"','''), array("_", "", "", "",''), wpsc_the_product_title()); ?>" class="thickbox preview_link" href="<?php echo wpsc_the_product_image(); ?>">
<img class="product_image" id="product_image_<?php echo wpsc_the_product_id(); ?>" alt="<?php echo wpsc_the_product_title(); ?>" title="<?php echo wpsc_the_product_title(); ?>" src="<?php echo wpsc_the_product_thumbnail(); ?>" />
</a>
<?php else: ?>
<div class="item_no_image">
<a href="<?php echo wpsc_the_product_permalink(); ?>">
<span>No Image Available</span>
</a>
</div>
<?php endif; ?>
开发者ID:nerdfiles,项目名称:sideshowtramps.com,代码行数:31,代码来源:products_page.php
注:本文中的wpsc_category_class函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论