Skip to content

Instantly share code, notes, and snippets.

View Juandforero9's full-sized avatar
👾

Juandforero9

👾
View GitHub Profile
@Juandforero9
Juandforero9 / functions.php
Last active July 10, 2024 11:23
Add purchase to google analytics 4 from woocommerce using measurement protocol
//add this following code to your functions template
//change values of variables on line 64 and 65
function obtenertaxonomia( $product_id, $taxonomy ) {
$terminos = wp_get_post_terms(
$product_id,
$taxonomy,
array(
'orderby' => 'parent',
'order' => 'ASC',
)