В вашем коде есть некоторые ошибки и упущения. Попробуйте выполнить следующее, чтобы получить продукт с атрибутом pa_dagaanbieding
продукта (таксономия) для Ja
названия термина, используя настраиваемый запрос SQL:
if( !function_exists('display_product_dagaanbieding_ja') ) {
function display_product_dagaanbieding_ja( $atts ) {
// Attributes
extract( shortcode_atts(
array(
'taxonomy' => 'pa_dagaanbieding', // The taxonomy of this product attribute
'term_name' => 'Ja', // The term name for this product attribute
),
$atts
));
global $wpdb;
// SQL query: To get the product ID from defined product attribute term name
$product_id = $wpdb->get_var( $wpdb->prepare("
SELECT tr.object_id
FROM {$wpdb->prefix}term_relationships tr
INNER JOIN {$wpdb->prefix}term_taxonomy tt
ON tr.term_taxonomy_id = tt.term_taxonomy_id
INNER JOIN {$wpdb->prefix}terms t
ON tt.term_id = t.term_id
WHERE tt.taxonomy = '%s'
AND t.name = '%s'
", $taxonomy, $term_name ) );
// Exit if there is no product Id
if( ! $product_id ) return;
// Get an instance of the product object
$product = wc_get_product( $product_id );
// Exit if the product object is not defined
if( ! is_a( $product, 'WC_Product' ) ) return;
// Displays go here
return '<div class="row">
<div class="col-md-6"><h3>'.$product->get_title().'</h3>'.$product->get_image().'<br><br><a href="'.$product->get_permalink().'"><button type="submit" class="single_add_to_cart_button button alt">Bekijk aanbieding</button></a></div>
<div class="col-md-6">'.$product->get_price_html().'</div>
</div>';
}
add_shortcode( 'product_ja', 'display_product_dagaanbieding_ja' );
}
Код переходит в функцию. php файл вашей активной дочерней темы (или активной темы). Проверено и работает.
ИСПОЛЬЗОВАНИЕ: [product_ja]
или echo do_shortcode('[product_ja]');