Anonymous User 14808221
(@anonymized-14808221)
You can display Types Custom Fields either with ShortCodes or with PHP.
Thread Starter
doxy
(@doxy)
Thanks Beda,
Is it possible without types_render_field ?
Just in wp_query?
Anonymous User 14808221
(@anonymized-14808221)
the wp_query does not display fields, it queries posts, for later display it.
You can use any valid query argument for fields to get posts with those fields.
All Types fields have a prefix (wpcf-).
This must be used in the meta_key argument of the wp_query to get posts with that Field.
Thread Starter
doxy
(@doxy)
Thanks Beda…
And How can i get the terms of the post?
created a new terms with the toolset.
How can I list the taxonomy terms in posts wp-query?
Example
POST A
title: Peter
term taxonomy: Animal –> cat
POST B
title: John
term taxonomy: Animal –> dog
POST C
title: Gary
term taxonomy: Animal –> cat
Anonymous User 14808221
(@anonymized-14808221)