public function theme_tag_options( $theme ) { if ( count( $theme->tags ) != 0 ) { foreach ( $theme->tags as $tag ) { $tagarray[] = ""; } sort( $tagarray ); } return implode( "\n", $tagarray ); }