Skip to content

Instantly share code, notes, and snippets.

@UraraReika
Last active September 27, 2019 14:41
Show Gist options
  • Save UraraReika/a950ef9d251919189a43cdb63e117526 to your computer and use it in GitHub Desktop.
Save UraraReika/a950ef9d251919189a43cdb63e117526 to your computer and use it in GitHub Desktop.
Adds necessary taxonomies to the drop-down list of Jet Woo Taxonomy Tiles Widget
<?php
add_filter( 'jet-woo-builder/jet-woo-taxonomy-tiles/taxonomy_options', '__your_prefix_add_taxonomy_options' );
function __your_prefix_add_taxonomy_options( $taxonomy ) {
$taxonomy['category'] = esc_html__( 'Post Category', 'jet-woo-builder' ); // Standart Post Category key
$taxonomy['post-custom-tax'] = esc_html__( 'Custom Taxonomy', 'jet-woo-builder' ); // Custom Taxonomy key
return $taxonomy;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment