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
Post a Comment