You appear to be a bot. Output may be restricted
Description
Query the registered taxonomies to see if this is registered
Usage
$bool = bw_query_taxonomy( $taxonomy );
Parameters
- $taxonomy
- ( string ) optional – the taxonomy name
Returns
bool true if registered, false if not.Source
File name: oik/includes/bw_register.phpLines:
1 to 6 of 6
function bw_query_taxonomy( $taxonomy=null ) { global $wp_taxonomies; //bw_trace2( $wp_taxonomies ); $exists = taxonomy_exists( $taxonomy ); return( $exists ); }View on GitHub View on Trac