当前位置: 首页>>代码示例>>PHP>>正文


PHP wpsc_product_count函数代码示例

本文整理汇总了PHP中wpsc_product_count函数的典型用法代码示例。如果您正苦于以下问题:PHP wpsc_product_count函数的具体用法?PHP wpsc_product_count怎么用?PHP wpsc_product_count使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了wpsc_product_count函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: wpsc_showing_products

/**
 * wpsc showing products
 * Displays the number of page showing in the form "10 to 20".
 * If only on page is being display it will return the total amount of products showing.
 * @return (string) Number of products showing
 */
function wpsc_showing_products()
{
    global $wpsc_query;
    // If we are using pages...
    if (get_option('use_pagination') == 1) {
        $products_per_page = $wpsc_query->query_vars['number_per_page'];
        if ($wpsc_query->query_vars['page'] > 0) {
            $startnum = ($wpsc_query->query_vars['page'] - 1) * $products_per_page;
        } else {
            $startnum = 0;
        }
        return $startnum + 1 . ' to ' . ($startnum + wpsc_product_count());
    }
    return wpsc_total_product_count();
}
开发者ID:BGCX261,项目名称:zombie-craft-svn-to-git,代码行数:21,代码来源:pagination.class.php

示例2: wpsc_total_product_count

/**
 * count total products on a page
 * see http://plugins.svn.wordpress.org/wp-e-commerce/tags/3.7.8/themes/iShop/products_page.php
 *
 * @return int
 */
function wpsc_total_product_count()
{
    _deprecated_function(__FUNCTION__, '3.8');
    return wpsc_product_count();
}
开发者ID:arturo-mayorga,项目名称:am_com,代码行数:11,代码来源:wpsc-deprecated.php

示例3: wpsc_the_product_id

				</tr>

				<tr class="list_view_description">
					<td colspan="5">
						<div id="list_description_<?php echo wpsc_the_product_id(); ?>">
							<?php echo wpsc_the_product_description(); ?>
						</div>
					</td>
				</tr>

			<?php endwhile; ?>
			<?php /** end the product loop here */?>
		</table>
		
		
		<?php if(wpsc_product_count() < 1):?>
			<p><?php  echo __('There are no products in this group.', 'wpsc'); ?></p>
		<?php endif ; ?>

	<?php

	if(function_exists('fancy_notifications')) {
		echo fancy_notifications();
	}
	?>
		
		
		<!-- Start Pagination -->
		<?php if ( ( get_option( 'use_pagination' ) == 1 && ( get_option( 'wpsc_page_number_position' ) == 2 || get_option( 'wpsc_page_number_position' ) == 3 ) ) ) : ?>
			<div class="wpsc_page_numbers">
				<?php if ( wpsc_has_pages() ) : ?>
开发者ID:nerdfiles,项目名称:sideshowtramps.com,代码行数:31,代码来源:list_view.php

示例4:

</a>
					<?php 
        }
        ?>
				</h2>
		</div><!--close default_product_display-->

		<?php 
    }
    ?>
		<?php 
    /** end the product loop here */
    ?>
		</div>
		<?php 
    if (wpsc_product_count() == 0) {
        ?>
			<h3><?php 
        _e('There are no products in this group.', 'wpsc');
        ?>
</h3>
		<?php 
    }
    ?>
	    <?php 
    do_action('wpsc_theme_footer');
    ?>

		<?php 
    if (wpsc_has_pages_bottom()) {
        ?>
开发者ID:B1aZer,项目名称:yaltatoys_wp,代码行数:31,代码来源:wpsc-products_page.php

示例5:

        }
        ?>
					</div>
			</div>
		</div>

		<?php 
    }
    ?>
		<?php 
    /** end the product loop here */
    ?>
		
		
		<?php 
    if (wpsc_product_count() < 1) {
        ?>
			<p><?php 
        echo TXT_WPSC_NOITEMSINTHISGROUP;
        ?>
</p>
		<?php 
    }
    ?>

	<?php 
    if (function_exists('fancy_notifications')) {
        echo fancy_notifications();
    }
    ?>
开发者ID:alx,项目名称:SimplePress,代码行数:30,代码来源:products_page.php


注:本文中的wpsc_product_count函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。