Problem: I would like to customize my site's RSS feeds.
Solution: Types does not offer a way to directly modify RSS feed information through the wp-admin area, but another ticket here on the forum includes some information about customizing RSS feeds you might find helpful.
You can access raw custom field values in PHP using the following syntax:
get_post_meta( $post_id, 'wpcf-fieldslug', true);
Or you can access the formatted field values using this syntax:
types_render_field('fieldslug', array( "id"=>$post_id, "arg1"=>"some value") );
Relevant Documentation: https://toolset.com/forums/topic/how-to-get-an-rss-feed-from-custom-post-type-with-all-associated-fields-and-taxo/
https://toolset.com/documentation/customizing-sites-using-php/functions/
https://codex.wordpress.org/Customizing_Feeds
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Our next available supporter will start replying to tickets in about 5.05 hours from now. Thank you for your understanding.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | - | - |
13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | - | - |
Supporter timezone: America/New_York (GMT-04:00)
This topic contains 6 replies, has 2 voices.
Last updated by 6 years, 9 months ago.
Assisted by: Christian Cox.