1

我正在使用带有 Woocommerce 版本 3.3.4 的 WordPress 4.9.4 运行 27 个儿童主题主题。我正在尝试删除侧边栏……我尝试过使用它:

remove_action('woocommerce_sidebar','woocommerce_get_sidebar',10);

但是还没有找到合适的。

如何删除所有侧边栏?

4

3 回答 3

2

适用于所有主题的最佳且最简单的方法是以这种方式使用get_sidebarWordpress 操作挂钩:

add_action( 'get_sidebar', 'remove_woocommerce_sidebar', 1, 1 );
function remove_woocommerce_sidebar( $name ){
    if ( is_woocommerce() && empty( $name ) )
        exit();
}

代码位于您的活动子主题(或活动主题)的 function.php 文件中。测试和工作。

您可能需要对一些与 html 相关的容器进行一些 CSS 更改

此代码适用于任何主题,因为所有主题都将get_sidebar()Wordpress 功能用于侧边栏(甚至对于 Woocommerce 侧边栏),并且get_sidebar操作挂钩位于此功能代码内。

于 2018-03-27T20:57:20.913 回答
1

WooCommerce 在 WC_Twenty_Seventeen /** 类中针对此特定主题的代码中广告侧栏 /** * 关闭二十七个包装器。*/

public static function output_content_wrapper_end() {
        echo '</main>';
        echo '</div>';
        get_sidebar();
        echo '</div>';
    }

我用这段代码替换了那个函数

remove_action( 'woocommerce_after_main_content', array( 'WC_Twenty_Seventeen', 'output_content_wrapper_end' ), 10 );
add_action( 'woocommerce_after_main_content', 'custom_output_content_wrapper_end', 10 );

/** * 关闭二十一十七包装。*/

function custom_output_content_wrapper_end() {
        echo '</main>';
        echo '</div>'; 
        echo '</div>';
    }
于 2018-03-27T21:06:32.953 回答
0

使用is_active_sidebar钩子 - 这应该适用于任何主题,因为它是 WordPress 的核心功能:

function remove_wc_sidebar_always( $array ) {
  return false;
}
add_filter( 'is_active_sidebar', 'remove_wc_sidebar_always', 10, 2 );

您还可以使用条件语句仅在某些页面上隐藏侧边栏,例如在产品页面上:

function remove_wc_sidebar_conditional( $array ) {

  // Hide sidebar on product pages by returning false
  if ( is_product() )
    return false;

  // Otherwise, return the original array parameter to keep the sidebar
  return $array;
}

add_filter( 'is_active_sidebar', 'remove_wc_sidebar_conditional', 10, 2 );
于 2020-01-28T16:25:17.627 回答