how to call woocommerce product description in a post in wordpress -


i want display product description in post. have tried shortcode in post:

[product_decrption id="1022"] 

but nothing showning in post.can please me. there function needed work this?

as per knowledge, don't think there in-built shortcode that.

but can make own 1 this:

function rohils_product_description_function( $atts, $content=null ) {     extract(shortcode_atts( array('id' => ''), $atts));     $product_data = new wc_product($id);     $content = $product_data->post->post_content;     return $content; } add_shortcode( 'product_decrption', 'rohils_product_description_function' ); 

and use : [product_decrption id="8"]


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -