wordpress - hook to add author name in woocomerce product single page -


i working plugin , going integrate woocomerce. using plugin want add product author name in product single page .

so need hook how add author name in product single page. please me how solve this.

you can use action :

add_action('woocommerce_before_single_product_summary','mycustomfuncion',11); function mycustomfuncion() {     global $product;     $productid = $product->id;   } 

in mycustomfuncion() can product id , product id can fetch author name database , echo author name.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -