18 lines
383 B
PHP
18 lines
383 B
PHP
|
<?php $flags = get_terms(
|
||
|
array(
|
||
|
'taxonomy' => 'flag',
|
||
|
'hide_empty' => false,
|
||
|
)
|
||
|
);
|
||
|
|
||
|
if ($flags) {
|
||
|
foreach( $flags as $flag ) {
|
||
|
if ($flag->slug == "global") {
|
||
|
$term_meta = get_option( "taxonomy_term_$flag->term_id" );
|
||
|
echo "<div class='toast toast-" . $term_meta['niveau'] . "'>";
|
||
|
echo $flag->description;
|
||
|
echo "</div>";
|
||
|
}
|
||
|
}
|
||
|
} ?>
|