Advertisement
Guest User

Get all metadata

a guest
Dec 16th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. $taxonomy = 'hhie_artists';
  3. $args = array(
  4.     'hide_empty' => 0
  5.     );
  6. $terms = get_terms( $taxonomy, $args );
  7. foreach( $terms as $term ) {
  8. $t_id = $term->term_id;
  9. $term_meta = get_option( "taxonomy_$t_id" );
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement