PDA

View Full Version : RSS question


benjones
07-12-2016, 05:25 PM
Is it possible to define my RSS feed so that it only puts out posts my certain users or certain categories of users eg admins? I know how to define the forumids that the RSS will export but are there are other switches available apart from

forumids=x,y,z

lastpost=1

Or is there something modifiable in forumhome_forumbit_level1_post which defines the RSS feed?

Gio~Logist
07-12-2016, 05:33 PM
Here's a list of the variables it fetches initially:

$vbulletin->input->clean_array_gpc('r', array(
'forumid' => TYPE_UINT,
'forumids' => TYPE_STR,
'type' => TYPE_STR,
'lastpost' => TYPE_BOOL,
'nohtml' => TYPE_BOOL,
'fulldesc' => TYPE_BOOL,
'do' => TYPE_STR,
'count' => TYPE_UINT,
'id' => TYPE_UINT,
'grouped' => TYPE_UINT,
'days' => TYPE_UINT,
'detail' => TYPE_STR,
'name' => TYPE_STR,
));

benjones
07-17-2016, 10:59 PM
thanks, very helpful:)