Output custom field for post_tag
-
Hello,
sorry for my stupid, basic question π
I extend the existing taxonomy for tags and I can already fill the fields in the settings under posts>tags. The data is saved in my database under wp_pods_post_tag. Now I want to output the content of the field in a .php field of my theme.
$tags = get_tags(); foreach ($tags as $tag) { echo $tag->*mycustomfieldname*; }Something like that doesn’t work. So how can I output the content of the field? I searched a lot in the internet but couldn’t find something relevant.
I am very thankful for every answer.
Greetings, Malte
The topic ‘Output custom field for post_tag’ is closed to new replies.