Description
Note the bw_register_taxonomy function is commented out! Herb 2013/10/15 – as is the similar function in oik-fields.phpRegister a taxonomy named $taxonomy_name of type $taxonomy_type with title $taxonomy_title and additional values $args
Usage
oik_tax_taxonomies();Parameters
Returns
voidSource
File name: oik-types/admin/oik-taxonomies.phpLines:
1 to 12 of 12
function oik_tax_taxonomies() { BW_::p( "" ); bw_form(); stag( "table", "widefat" ); stag( "thead"); bw_tablerow( array( "Name", "Type", "Label", "Singular", "Title", "Actions" )); etag( "thead"); _oik_tax_taxonomy_table(); etag( "table" ); e( isubmit( "_oik_tax_add_taxonomy", __( "Add taxonomy", "oik-types" ), null, "button-primary" ) ); etag( "form" ); }View on GitHub
Called by
Invoked by
Calls
1 to 7 of 7
- bw_form() – Start a form
- bw_tablerow() – Display a table row or table head row when $tdtag = "th"
- etag() – Output an end tag
- isubmit() – Create a submit button
- p() – Output a paragraph of translatable text
- stag() – Output an HTML opening tag
- _oik_tax_taxonomy_table() – Display the table of oik custom taxonomies
