aioseo_allowed_shortcode_tags

aioseo_allowed_shortcode_tags

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.4.8.1.1

apply_filters('aioseo_allowed_shortcode_tags') is found 1 times:

  • /app/Common/Traits/Helpers/Shortcodes.php line 93
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
        if ( ! count( $tags ) ) {
            return $content;
        }
     
        $allowedTags  = apply_filters( 'aioseo_allowed_shortcode_tags', $allowedTags );
        $tagsToRemove = array_diff( $tags, $allowedTags );
     
        $content = $this->doShortcodesHelper( $content, $tagsToRemove, $postId );
     
        return $content;
    }