You appear to be a bot. Output may be restricted
Description
Edit the taxonomy to type relationship
Usage
oik_x2t_edit_x2t();
Parameters
Returns
voidSource
File name: oik-types/admin/oik-x2t.phpLines:
1 to 16 of 16
function oik_x2t_edit_x2t( ) { global $bw_x2t; bw_form(); stag( "table", "wide-fat" ); bw_tablerow( array( "Relationship", $bw_x2t['args']['x2t'] . ihidden( 'x2t', $bw_x2t['args']['x2t']) ) ); //bw_textfield( "x2t", 20, "Post x2t", $bw_x2t['args']['x2t'] ); //bw_textfield( "type", 30, "Type", stripslashes( $bw_x2t['args']['type'] ) ); //$field = esc_textarea( $bw_x2t['args']['field'] ); //bw_trace2( $field, "esc_textarea field", false ); bw_textfield( "taxonomy", 100, "taxonomy", stripslashes( $bw_x2t['args']['taxonomy'] ) ); //bw_checkbox( "hierarchical", "Hierarchical x2t?", $bw_x2t['args']["hierarchical"] ); etag( "table" ); p( isubmit( "_oik_x2t_edit_x2t", "Change relationship", null, "button-primary" ) ); etag( "form" ); }View on GitHub