Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say I have a function like this:

add_filter("post_gallery", "fix_my_gallery_wpse43558",10,2);
function fix_my_gallery_wpse43558($output, $attr) {

    // blah, blah, blah

}

Basically, the function above allows me to override the built-in (AKA default) WordPress image gallery template using the post_gallery filter.

The thing is, I would like to override the default WordPress image gallery template ONLY IN my custom feed, for which I need to use the if ( is_feed( $feeds = 'custom_feed' ) ) { .... } conditional tag.

The question is, what is the right way to operate the function inside the conditional tag?

if ( is_feed( $feeds = 'custom_feed' ) ) {

    add_filter("post_gallery", "fix_my_gallery_wpse43558",10,2);
    function fix_my_gallery_wpse43558($output, $attr) {

        // blah, blah, blah

    }

}

or

add_filter("post_gallery", "fix_my_gallery_wpse43558",10,2);
function fix_my_gallery_wpse43558($output, $attr) {

    if ( is_feed( $feeds = 'custom_feed' ) ) {

        // blah, blah, blah

    }

}
share|improve this question

2 Answers

up vote 2 down vote accepted

I would go with your first solution, as the filter-function only needs to get executed when you are inside your feed.

But there is no "right way" as both solutions should work…

share|improve this answer

I would use the first one. It'll be faster as the filter will be ignored when not required.

Also, in the second example, you would also need to throw back out the $output, which again, is a bit wasteful from a speed perspective.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.