Last active
September 27, 2019 14:41
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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