當前位置: 首頁>>代碼示例>>PHP>>正文


PHP wpsc_display_categories函數代碼示例

本文整理匯總了PHP中wpsc_display_categories函數的典型用法代碼示例。如果您正苦於以下問題:PHP wpsc_display_categories函數的具體用法?PHP wpsc_display_categories怎麽用?PHP wpsc_display_categories使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了wpsc_display_categories函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: wpsc_display_products

/**
* wpsc display products function
* Used to determine whether to display products on the page
* @return boolean - true for yes, false for no
*/
function wpsc_display_products()
{
    //we have to display something, if we are not displaying categories, then we must display products
    $output = true;
    if (wpsc_display_categories()) {
        if (get_option('wpsc_default_category') == 'list') {
            $output = false;
        }
        if (isset($_GET['range']) || isset($_GET['category'])) {
            $output = true;
        }
    }
    return $output;
}
開發者ID:alx,項目名稱:SimplePress,代碼行數:19,代碼來源:wpsc_query.php

示例2: wpsc_display_products

/**
 * wpsc display products function
 * Used to determine whether to display products on the page
 * @return boolean - true for yes, false for no
 */
function wpsc_display_products()
{
    $post = get_queried_object();
    $product_page_id = wpsc_get_the_post_id_by_shortcode('[productspage]');
    //we have to display something, if we are not displaying categories, then we must display products
    $output = true;
    if (wpsc_display_categories() && isset($post->ID)) {
        if (get_option('wpsc_default_category') == 'list' && $post->ID == $product_page_id) {
            $output = false;
        }
        if (isset($_GET['range']) || isset($_GET['category'])) {
            $output = true;
        }
    }
    return $output;
}
開發者ID:AngryBird3,項目名稱:WP-e-Commerce,代碼行數:21,代碼來源:template-tags.php

示例3: if

<?php if(wpsc_has_breadcrumbs()) : ?>
		<div class='breadcrumb'>
			<a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
			<?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
				<?php if(wpsc_breadcrumb_url()) :?> 	   
					<a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
				<?php else: ?> 
					<?php echo wpsc_breadcrumb_name(); ?>
				<?php endif; ?> 
			<?php endwhile; ?>
		</div>
	<?php endif; ?>
	
	<?php do_action('wpsc_top_of_products_page'); // Plugin hook for adding things to the top of the products page, like the live search ?>

	<?php if(wpsc_display_categories()): ?>
	  <?php if(get_option('wpsc_category_grid_view') == 1) :?>
			<div class='wpsc_categories wpsc_category_grid'>
				<?php wpsc_start_category_query(array('category_group'=> get_option('wpsc_default_category'), 'show_thumbnails'=> 1)); ?>
					<a href="<?php wpsc_print_category_url();?>" class="wpsc_category_grid_item" title='<?php wpsc_print_category_name();?>'>
						<?php wpsc_print_category_image(45, 45); ?>
					</a>
					<?php wpsc_print_subcategory("", ""); ?>
				<?php wpsc_end_category_query(); ?>
				<div class='clear_category_group'></div>
			</div>
	  <?php else:?>
			<ul class='wpsc_categories'>
				<?php wpsc_start_category_query(array('category_group'=> get_option('wpsc_default_category'), 'show_thumbnails'=> get_option('show_category_thumbnails'))); ?>
						<li>
							<?php wpsc_print_category_image(32, 32); ?>
開發者ID:nerdfiles,項目名稱:sideshowtramps.com,代碼行數:31,代碼來源:list_view.php

示例4: wpsc_output_breadcrumbs

/*
 * Most functions called in this page can be found in the wpsc_query.php file
 */
?>
<div id="default_products_page_container" class="wrap wpsc_container">

<?php 
wpsc_output_breadcrumbs();
?>

	<?php 
do_action('wpsc_top_of_products_page');
// Plugin hook for adding things to the top of the products page, like the live search
?>
	<?php 
if (wpsc_display_categories()) {
    ?>
	  <?php 
    if (wpsc_category_grid_view()) {
        ?>
			<div class="wpsc_categories wpsc_category_grid group">
				<?php 
        wpsc_start_category_query(array('category_group' => get_option('wpsc_default_category'), 'show_thumbnails' => 1));
        ?>
					<a href="<?php 
        wpsc_print_category_url();
        ?>
" class="wpsc_category_grid_item  <?php 
        wpsc_print_category_classes_section();
        ?>
" title="<?php 
開發者ID:B1aZer,項目名稱:yaltatoys_wp,代碼行數:31,代碼來源:wpsc-products_page.php


注:本文中的wpsc_display_categories函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。