You appear to be a bot. Output may be restricted
Description
Display a tag selection drop down list
We use the default parameters to get_terms() – so that unused tags are not listed.
[0] => stdClass Object ( [term_id] => 94 [name] => Artisteer [slug] => artisteer [term_group] => 0 [term_taxonomy_id] => 94 [taxonomy] => post_tag [description] => [parent] => 0 [count] => 1 )
Usage
oik_batchmove_tag_select();
Parameters
Returns
void
Source
File name: oik-batchmove/admin/oik-batchmove-tags.php
Lines:
1 to 6 of 6
function oik_batchmove_tag_select() { $tags = get_terms( 'post_tag' ); $term_array = bw_term_array( $tags ); bw_select( "tag", "Tags", null, array( "#options" => $term_array ) ); return( $tags ); }