Lines:
1 to 43 of 43
<?php // (C) Copyright Bobbing Wide 2013-2018 /* function oiktax_lazy_taxonomies_do_page() – Lazy implementation for "oik-taxonomies" */ /* function _oik_tax_taxonomy_row() – Display a current taxonomy */ /* function _oik_tax_taxonomy_table() – Display the table of oik custom taxonomies */ /* function _oik_tax_check_taxonomy_exists() – Check if the taxonomy exists */ /* function _oik_tax_add_oik_tax() – Check if it already exists as a taxonomy */ /* function _oik_tax_update_taxonomy() – Update an oik custom taxonomy */ /* function _oik_tax_delete_taxonomy() – Delete an oik taxonomy */ /* function oik_diy_validate_taxonomy() – Taxonomy must not be blank */ /* function _oik_tax_taxonomy_validate() – */ /* function oik_tax_taxonomies() – Note the bw_register_taxonomy function is commented out! Herb 2013/10/15 – as is the similar function in oik-fields.php */ /* function oik_tax_query_taxonomy_types() – Return the different choices for Taxonomy type */ /* function oik_tax_add_oik_tax() – Add a Taxonomy name */ /* function oik_tax_edit_taxonomy() – Display form to edit a custom taxonomy */ /* function oik_tax_preview() – */ if ( !function_exists( "bw_update_option" ) ) { /* function bw_update_option() – Set the value of an option field in the options group */ } if ( !function_exists( "bw_delete_option" ) ) { /* function bw_delete_option() – Remove an option field from a set */ }View on GitHub