aioseo_allowed_shortcode_tags, $allowedTags

aioseo_allowed_shortcode_tags, $allowedTags

Hook Type: filter

See hook in core

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

apply_filters('aioseo_allowed_shortcode_tags, $allowedTags') is found 1 times:

  • /app/Common/Traits/Helpers/Shortcodes.php line 93
    		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;
    	}