• Hello,

    I’ve added the following code to my categories.php but the meta is not showing:

    if (function_exists('get_terms_meta'))
    {
        $metaValue = get_terms_meta($category_id, $meta_key);
    }

    I have value for certain category but it’s not showing in the template. Should I add something else in order to dispay the meta?

    Regards

    https://www.ads-software.com/plugins/wp-category-meta/

Viewing 1 replies (of 1 total)
  • It returns a single dimensinal array as:

    array {
     [$meta-key] => 'value'
    }

    to get a meta key as a string directly, I rcemmond add a third boolean parameter ‘single’ as true. I recommend this code:

    if (function_exists('get_terms_meta'))
    {
        $metaValue = get_terms_meta(25, 'my_key',true);
    }

    if no result can be found, the empty string is returned.

Viewing 1 replies (of 1 total)
  • The topic ‘Cannot get meta’ is closed to new replies.