最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

woocommerce offtopic - Wordpress shortcode to pull product post data

programmeradmin1浏览0评论

I am looking for a way to pull(export) product post data (WooCommerce) using a shortcode by Product post ID to another general post

(ex. product post title/string).

Thank you

I am looking for a way to pull(export) product post data (WooCommerce) using a shortcode by Product post ID to another general post

(ex. product post title/string).

Thank you

Share Improve this question edited Mar 9, 2020 at 8:53 sleepingpanda 566 bronze badges asked Mar 8, 2020 at 18:10 LiorLior 1
Add a comment  | 

1 Answer 1

Reset to default 0

Add this code to your functions.php file and then you can use [product_title id="123"] shortcode

If you want other product meta you can edit the function to return any product data you would want

/**
 * Product title shortcode.
 *  `[product_title id="123"]` to get a specific product title, by ID
 * 
 * @return string  The post's title.
 */
add_shortcode( 'product_title', function( $atts ) {
    $atts = shortcode_atts( array(
        'id' => get_the_ID(),
    ), $atts, 'post_title' );
    return get_the_title( absint( $atts['id'] ) );
});
发布评论

评论列表(0)

  1. 暂无评论