hellobarrio
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Relationships don't work
Started by: hellobarrio in: Toolset Professional Support |
3 | 7 | 1 year, 8 months ago | ||
Display repeating field group with php
Started by: hellobarrio
in: Toolset Professional Support
Problem: I would like to know how to loop over repeating field groups with PHP. Solution: $parent = get_post( 12345 ); // the parent post that holds the RFG $sezioni = toolset_get_related_posts( $parent, // the parent post 'sezioni', // the RFG slug 'parent', // the post role in this relationship is 'parent' 1000000, // the maximum number of results 0, // the offset array(), // additional query arguments 'post_id', // return format 'child', // role to return ); // $sezioni is now an array of post IDs for each RFG $sez1 = get_post( $sezioni[0] ); // example, get the first Sezioni RFG ID $pulsanti = toolset_get_related_posts( $sez1, // the parent RFG 'pulsanti', // the RFG slug 'parent', // the sezioni role in this relationship is 'parent' 1000000, // the maximum number of results 0, // the offset array(), // additional query arguments 'post_id', // return format 'child', // role to return ); // $pulsanti is now an array of post IDs for each RFG in $sez1 Relevant Documentation: |
2 | 4 | 6 years, 7 months ago | ||
toolset types 3 is ready?
Started by: hellobarrio
in: Toolset Professional Support
Problem: Solution: Types 3.0 has been released and should be available for download. |
2 | 2 | 6 years, 8 months ago |