php 在产品单一视图中显示摘要后的属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在产品单一视图中显示摘要后的属性相关的知识,希望对你有一定的参考价值。

//show attributes after summary in product single view
add_action('woocommerce_single_product_summary', 'single_product_summary', 25);
function single_product_summary(){
	//template for this is in storefront-child/woocommerce/single-product/product-attributes.php
	global $product;
	echo '<table class="shop_attributes">
			<tbody>
				<tr>
					<th>'.__("Pages","custom").'</th>
					<td><p>'.$product->get_attribute( 'pages' ).'</p></td>
				</tr>
				<tr>
					<th>'.__("Dimensions","custom").'</th>
					<td><p>'.$product->get_attribute( 'dimensions' ).'</p></td>
				</tr>
				<tr>
					<th>'.__("Format","custom").'</th>
					<td><p>'.$product->get_attribute( 'format' ).'</p></td>
				</tr>';

	if ( $product->get_attribute( 'coeditor' )!='' )
		echo '	<tr>
					<th>'.__("In co-editie met","custom").'</th>
					<td><p>'.$product->get_attribute( 'coeditor' ).'</p></td>
				</tr>';

	echo 	'</tbody>
		</table>';

	$product->get_attribute( 'authors' );
}

以上是关于php 在产品单一视图中显示摘要后的属性的主要内容,如果未能解决你的问题,请参考以下文章

试图获取非对象的属性“名称”(视图:(...)资源/视图/产品/index.blade.php)

php 从目录产品视图上的属性proadunt获取属性标签

如何将 HTML 集成到 WordPress Woocommerce 单一产品页面中

仅在 WooCommerce 单一产品页面上加载脚本

php [显示产品属性存档链接]在产品页面上显示WooCommerce产品属性存档链接,位于添加到购物车b的正下方

php [显示产品属性存档链接]在产品页面上显示WooCommerce产品属性存档链接,位于添加到购物车b的正下方