如何将我创建的产品制作到woocommerce商店页面?

时间:2015-11-20 18:18:54

标签: php wordpress woocommerce product shop

我们现在有一种产品。我希望我们的产品成为商店页面。你知道我如何制作我在商店页面上创建的产品吗?如果用户点击商店,它应该只显示我的单品。不是产品清单,因为我们有一个产品。产品意味着它在该页面中具有“添加到购物车”按钮。因此,商店页面应显示产品页面,其中包含添加到购物车按钮,产品信息,价格,一切。

例如,我希望用户点击商店页面,它应该像这样链接到我的单个页面。 http://www.garageclothing.com/us/hooded-flannel-plaid-shirt/p/100009673

1 个答案:

答案 0 :(得分:2)

我认为你应该能够过滤template_redirect

function so_template_redirect(){
    if( function_exists( 'is_shop' ) && is_shop() ){
        $product_id = 999; // change to the ID of your 1 product
        $permalink = get_permalink( $product_id );
        wp_redirect( $permalink );
        exit();
    }
}
add_action( 'template_redirect', 'so_template_redirect' );