Created
July 13, 2024 06:53
-
-
Save pickplugins/c127d5db0669f90e4c198c90a92724ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('wcps_layout_element_post_title', 'wcps_layout_element_post_title_20200331', 90); | |
function wcps_layout_element_post_title_20200331($args) | |
{ | |
$product_id = isset($args['product_id']) ? $args['product_id'] : ''; | |
$elementData = isset($args['elementData']) ? $args['elementData'] : array(); | |
$element_index = isset($args['element_index']) ? $args['element_index'] : ''; | |
$product = new WC_Product($product_id); | |
?> | |
<div class=""> | |
<?php | |
// echo "anyhting" | |
?> | |
</div> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment