wpseo_force_skip_image_content_parsing

wpseo_force_skip_image_content_parsing

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.24.8.1

apply_filters('wpseo_force_skip_image_content_parsing') is found 1 times:

  • /src/images/Application/image-content-extractor.php line 38
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    * The default value is false.
     *
     * @since 21.1
     */
    $should_not_parse_content = \apply_filters( 'wpseo_force_skip_image_content_parsing', $should_not_parse_content );
     
    if ( ! $should_not_parse_content && \class_exists( WP_HTML_Tag_Processor::class ) ) {
        return $this->gather_images_wp( $content );
    }
     
    if ( ! $should_not_parse_content && \class_exists( DOMDocument::class ) ) {