本文整理汇总了PHP中wpsc_edit_the_product_link函数的典型用法代码示例。如果您正苦于以下问题:PHP wpsc_edit_the_product_link函数的具体用法?PHP wpsc_edit_the_product_link怎么用?PHP wpsc_edit_the_product_link使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wpsc_edit_the_product_link函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: if
<?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_image($image_width, $image_height); ?>" />
</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; ?>
</div>
<?php endif; ?>
<div class="producttext">
<h2 class="prodtitles"><span><?php echo wpsc_the_product_title(); ?></span><?php echo wpsc_edit_the_product_link(); ?></h2>
<?php
do_action('wpsc_product_before_description', wpsc_the_product_id(), $wpsc_query->product);
?>
<div class="wpsc_description"><?php echo wpsc_the_product_description(); ?></div>
<?php
do_action('wpsc_product_addons', wpsc_the_product_id());
?>
<?php if(wpsc_the_product_additional_description()) : ?>
<div class="single_additional_description">
<?php
$value = '';
$the_addl_desc = wpsc_the_product_additional_description();
if( is_serialized($the_addl_desc) ) {
$addl_descriptions = @unserialize($the_addl_desc);
开发者ID:nerdfiles,项目名称:sideshowtramps.com,代码行数:31,代码来源:single_product.php
示例2: wpsc_the_product_title
<?php
}
?>
</div>
<?php
}
?>
<div class="producttext">
<h2 class="prodtitles"><span><?php
echo wpsc_the_product_title();
?>
</span><?php
echo wpsc_edit_the_product_link();
?>
</h2>
<?php
do_action('wpsc_product_before_description', wpsc_the_product_id(), $wpsc_query->product);
?>
<div class="wpsc_description"><?php
echo wpsc_the_product_description();
?>
</div>
<?php
do_action('wpsc_product_addons', wpsc_the_product_id());
?>
开发者ID:Jonathonbyrd,项目名称:wp-ecommerce,代码行数:31,代码来源:single_product.php
示例3: __
<?php
} else {
?>
<p class='soldout'><?php
echo __('This product has sold out.', 'wpsc');
?>
</p>
<?php
}
?>
<?php
}
?>
<?php
echo '<p>' . wpsc_edit_the_product_link() . '</p>';
?>
</div>
<?php
}
?>
</div>
</form>
</li>
<?php
if ($i % $products == 0) {
echo "<br class='clear' /></div>";
}
?>
<?php
开发者ID:BGCX261,项目名称:zombie-craft-svn-to-git,代码行数:31,代码来源:grid_view.php
注:本文中的wpsc_edit_the_product_link函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论