I am interested in showing content from my custom wordpress tables which includes various fields into wordpress Standard RSS Feed.
I have so far managed to display custom post type into standard feeds, however, this doesn't do my job as the content I want to display resides in a different custom tables. Content I will be pulling is about title, url, short_description, date etc
Code I have so far is:
add_filter('request', 'myfeed_request');
function myfeed_request($qv) {
if (isset($qv['feed']))
$qv['post_type'] = array('ipc_project_update');
return $qv;
}
Above code pulls content for post type 'ipc_project_update', however, I want to change it so it pulls content from my custom tables. Any help please on how I can achieve this?