I'd like to use Toolset to create a CPT, which I already did and created a CPT called Sermons. I also, have the Sermon taxomies like Books, Series, and Speakers. I can not and don't have time to create my own RSS feed. I have trouble with the PHP language and developing WordPress themes or Plugins. I'm getting better at WordPress front-end using the Platform. My question can Toolset have an RSS feed for each CPT you create built in, please?
add_action('rss2_item', 'yoursite_rss2_item');
function yoursite_rss2_item() {
if (get_post_type()=='my_custom_post_type') {
$fields = array( 'field1', 'field2', 'field3' );
$post_id = get_the_ID();
foreach($fields as $field)
if ($value = get_post_meta($post_id,$field,true))
echo "<{$field}>{$value}</{$field}>\n";
}
}
Please let me know if you require further help here. You should just setup your custom post type and grant me the access details as well as tell me what custom fields you want to add to your RSS feed and I would be happy to help you further.
There's actually another plugin for sermons. It's not out yet, but when it comes out, I'll be using that upcoming plugin for Sermons. I was going to use Toolset for Sermons as custom post type, but I don't believe I would need it. Please can I get a refund?