Description
Display the table of oik custom post types
Usage
oik_cpt_types();Parameters
Returns
voidSource
File name: oik-types/admin/oik-types.phpLines:
1 to 13 of 13
function oik_cpt_types() { BW_::p( "" ); stag( "table", "widefat" ); stag( "thead"); bw_tablerow( array( "Type", "Plural", "Singular", "Description", "Hierarchical?", "Archive?", "Actions" )); etag( "thead"); _oik_cpt_type_table(); etag( "table" ); bw_form(); e( isubmit( "_oik_cpt_add_type", __( "Add type", "oik-types" ), null, "button-primary" ) ); etag( "form" ); // bw_flush(); }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_cpt_type_table() – Display the table of oik custom post types
