wc_update_200_subcat_display() WC 1.0
Update sub-category display options for 2.0
No Hooks.
Return
null.
Usage
wc_update_200_subcat_display();
Code of wc_update_200_subcat_display() wc update 200 subcat display WC 5.0.0
function wc_update_200_subcat_display() {
// Update subcat display settings.
if ( 'yes' === get_option( 'woocommerce_shop_show_subcategories' ) ) {
if ( 'yes' === get_option( 'woocommerce_hide_products_when_showing_subcategories' ) ) {
update_option( 'woocommerce_shop_page_display', 'subcategories' );
} else {
update_option( 'woocommerce_shop_page_display', 'both' );
}
}
if ( 'yes' === get_option( 'woocommerce_show_subcategories' ) ) {
if ( 'yes' === get_option( 'woocommerce_hide_products_when_showing_subcategories' ) ) {
update_option( 'woocommerce_category_archive_display', 'subcategories' );
} else {
update_option( 'woocommerce_category_archive_display', 'both' );
}
}
}