Your IP : 216.73.216.164


Current Path : /var/www/html/anwc/wp-content/themes/khore/event-framework/helpers/
Upload File :
Current File : /var/www/html/anwc/wp-content/themes/khore/event-framework/helpers/taxonomy.php

<?php

class EF_Taxonomy_Helper {
	
	public static function ef_get_term_meta( $field_set, $term_id, $field_id ) {
        $meta = get_option( $field_set );
        if ( empty( $meta ) )
            $meta = array();
        if ( ! is_array( $meta ) )
            $meta = (array) $meta;
        $meta = isset( $meta[$term_id] ) ? $meta[$term_id] : array();
        $value = isset ( $meta[$field_id] ) ? $meta[$field_id] : '';

        return $value;
    }

}