Skip to content

Instantly share code, notes, and snippets.

View ReticentRobot's full-sized avatar
💭
I may be slow to respond.

ReticentRobot ReticentRobot

💭
I may be slow to respond.
View GitHub Profile
@ReticentRobot
ReticentRobot / Starfield-Spoilers.json
Last active August 30, 2023 15:23
#spoilerSlayer - Starfield
{
"spoilers": [
{
"spoiler": "Vectera",
"isRegex": false
},
{
"spoiler": "Ka'zaal",
"isRegex": false
},
@ReticentRobot
ReticentRobot / gist:4692710
Last active December 12, 2015 01:39
Using $query->set to remove feeds from RSS in Wordpress
// REMOVE CATEGORIES FROM RSS FEEDS
function removeFromRSS($query)
{
if ($query->is_feed)
{
$query->set('cat', '-111,-135,-138,-143'); //comma separate category ids
}
return $query;
}