Filter a pluggable function
As noted in @Milo’s comment, a function being “Pluggable” is entirely separate from it being filterable. A Pluggable function can be overridden wholesale, because of the if ( function_exists() ) conditional in which it’s wrapped. A Plugin is filterable if its output is parsed through an apply_filters() call. Since you only want to change a … Read more