';
$taxo = get_post_meta($post_id, 'awqsf-taxo', true);
if(!empty($taxo)){
$c =0;
$args=array('public' => true, '_builtin' => false);
$output = 'names'; // or objects
$operator = 'and'; // 'and' or 'or'
$taxonomies=get_taxonomies($args,$output,$operator);
foreach($taxo as $k => $v){
$html .= '';
$html .= '';
//for display taxonomy
$html .= '
| ';
//for label
$html .= '';
$html .= '';
$html .= '
| ';
//search all text
$html .= '';
$html .= '';
$html .= '
| ';
//hide empty
$html .= '';
$check1="";
$check0="";
if($v['hide'] == 1){$check1 = 'checked="checked"'; };
if($v['hide'] == 0){$check0 = 'checked="checked"'; };
$html .= '';
$html .= '';
$html .= '
| ';
//exlude id
$html .= ' | ';
//dispay type
$html .= '';
$checkbox = $radio = $dropdown = '';
if($v['type']== "checkbox"){ $checkbox = 'checked="checked"';}
if($v['type']== "dropdown"){ $dropdown = 'checked="checked"';}
if($v['type']== "radio"){ $radio = 'checked="checked"';}
$html .= '';
$html .= '';
$html .= '';
$html .= '
| ';
//action
$html .= ''.__("Remove","AWQSFTXT").'
| ';
$html .= '
';
$c++;
}
}
echo $html;
?>