Skip to content

Instantly share code, notes, and snippets.

@mikaelz
Created October 4, 2017 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikaelz/9b2f34136c20a563cf0fceed26fc740c to your computer and use it in GitHub Desktop.
Save mikaelz/9b2f34136c20a563cf0fceed26fc740c to your computer and use it in GitHub Desktop.
Create WooCommerce product category menu entry
<?php
$args = array(
'menu-item-object-id' => $term['term_id'],
'menu-item-object' => 'product_cat',
'menu-item-parent-id' => 0,
'menu-item-type' => 'taxonomy',
'menu-item-status' => 'publish',
);
$res = wp_update_nav_menu_item( MENU_ID, 0, $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment