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.5.9.2

apply_filters('aioseo_allowed_shortcode_tags') is found 1 times:

  • /app/Common/Traits/Helpers/Shortcodes.php line 91
    		if ( ! count( $tags ) ) {
    			return $content;
    		}
    
    		$allowedTags  = apply_filters( 'aioseo_allowed_shortcode_tags', [] );
    		$tagsToRemove = array_diff( $tags, $allowedTags );
    
    		$content = $this->doShortcodesHelper( $content, $tagsToRemove, $postId );
    
    		return $content;
    	}