Closed tannerm closed 9 months ago
The Disable Comments plugin runs a filter on template_redirect (priority level 9) and if is_comment_feed() returns true, it kills the request. We need to update the query before this point to set is_comment_feed = false if we are in a podcast feed.
template_redirect
is_comment_feed()
is_comment_feed = false
podcast
@tannerm made a PR for this #81
Addressed in #81
The Disable Comments plugin runs a filter on
template_redirect
(priority level 9) and ifis_comment_feed()
returns true, it kills the request. We need to update the query before this point to setis_comment_feed = false
if we are in apodcast
feed.