You appear to be a bot. Output may be restricted
Description
Return the different choices for Taxonomy type
Usage
$array = oik_tax_query_taxonomy_types( $taxonomy_types );
Parameters
- $taxonomy_types
- ( mixed ) optional –
Returns
array = associative array of taxonomy type and l10n value for the labelSource
File name: oik-types/admin/oik-taxonomies.phpLines:
1 to 5 of 5
function oik_tax_query_taxonomy_types( $taxonomy_types=null ) { $taxonomy_types['tags'] = __( 'Tags' ); $taxonomy_types['categories'] = __( 'Categories' ); return( $taxonomy_types ); }View on GitHub