php WooCommerce集成

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce集成相关的知识,希望对你有一定的参考价值。

//* Add WooCommerce integration
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10);
add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10);

function my_theme_wrapper_start() {
  echo '<div class="content-sidebar-wrap">';
}

function my_theme_wrapper_end() {
  echo '</div>';
}

//* Remove WC integration message
add_action( 'after_setup_theme', 'woocommerce_support' );
function woocommerce_support() {
    add_theme_support( 'woocommerce' );
}

以上是关于php WooCommerce集成的主要内容,如果未能解决你的问题,请参考以下文章

php WooCommerce集成演示

php 演示与WooCommerce的集成

php 演示与WooCommerce的集成

php WooCommerce集成

php [将产品与社交共享插件集成]将社交共享插件与WooCommerce集成 - Sharedaddy

php [将产品与社交共享插件集成]将社交共享插件与WooCommerce集成 - Sharedaddy