Skip to content

Instantly share code, notes, and snippets.

@I3rixon
Forked from lukecav/functions.php
Created January 19, 2024 10:19
Show Gist options
  • Select an option

  • Save I3rixon/e4e991c6773cbcc1e855281cb05d2372 to your computer and use it in GitHub Desktop.

Select an option

Save I3rixon/e4e991c6773cbcc1e855281cb05d2372 to your computer and use it in GitHub Desktop.
Enable revisions on products in WooCommerce
add_filter( 'woocommerce_register_post_type_product', 'wc_modify_product_post_type' );
function wc_modify_product_post_type( $args ) {
$args['supports'][] = 'revisions';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment