如何在這樣的表格中顯示我的代碼輸出?

我想以表格格式顯示和的標簽和值,$attribute而$attribute_label不是串列。
我對 PHP 很陌生,無法弄清楚如何做到這一點。我希望有人可以幫助我解決我的問題。
// Build the html string with the label followed by a clickable list of terms.
// Updated for WC3.0 to use getters instead of directly accessing property.
$html .= wp_get_object_terms( $product->get_id(), $taxonomy, '<li>' . $attribute_label . ': ' , ', ', '</li>' );
到目前為止我的代碼:
function so_39394127_attributes_shortcode( $atts ) {
global $product;
if( ! is_object( $product ) || ! $product->has_attributes() ){
return;
}
// parse the shortcode attributes
$args = shortcode_atts( array(
'attributes' => array_keys( $product->get_attributes() ), // by default show all attributes
), $atts );
// is pass an attributes param, turn into array
if( is_string( $args['attributes'] ) ){
$args['attributes'] = array_map( 'trim', explode( '|' , $args['attributes'] ) );
}
// start with a null string because shortcodes need to return not echo a value
$html = '';
if( ! empty( $args['attributes'] ) ){
foreach ( $args['attributes'] as $attribute ) {
// get the WC-standard attribute taxonomy name
$taxonomy = strpos( $attribute, 'pa_' ) === false ? wc_attribute_taxonomy_name( $attribute ) : $attribute;
if( taxonomy_is_product_attribute( $taxonomy ) ){
// Get the attribute label.
$attribute_label = wc_attribute_label( $taxonomy );
// Build the html string with the label followed by a clickable list of terms.
// Updated for WC3.0 to use getters instead of directly accessing property.
$html .= wp_get_object_terms( $product->get_id(), $taxonomy, '<li>' . $attribute_label . ': ' , ', ', '</li>' );
}
}
// if we have anything to display, wrap it in a <ul> for proper markup
// OR: delete these lines if you only wish to return the <li> elements
if( $html ){
$html = '<ul >' . $html . '</ul>';
}
}
return $html;
}
add_shortcode( 'display_attributes', 'so_39394127_attributes_shortcode' );
uj5u.com熱心網友回復:
您將需要更換:
ul經過tableli通過tr和td
所以你應該替換這個:
// Build the html string with the label followed by a clickable list of terms.
// Updated for WC3.0 to use getters instead of directly accessing property.
$html .= wp_get_object_terms( $product->get_id(), $taxonomy, '<li>' .
$attribute_label . ': ' , ', ', '</li>' );
經過:
$html .= wp_get_object_terms( $product->get_id(), $taxonomy, '<tr><td>' .
$attribute_label . '</td><td>' , '</td><td>' , '</td></tr>' );
對于ul:
$html = '<ul >' . $html . '</ul>';
經過:
$html = '<table >' . $html . '</table>';
轉載請註明出處,本文鏈接:https://www.uj5u.com/qukuanlian/465655.html
標籤:php html WordPress woocommerce
上一篇:從年初獲取前幾個月的串列
下一篇:與多維陣列作斗爭
