aioseo_sitemap_images

aioseo_sitemap_images

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_sitemap_images') is found 1 times:

  • /app/Common/Sitemap/Image/Image.php line 183
    180
    181
    182
    183
    184
    185
    186
    187
    188
        $images = $this->extract();
        $images = $this->removeImageDimensions( $images );
     
        $images = apply_filters( 'aioseo_sitemap_images', $images, $post );
     
        // Limit to a 1,000 URLs, in accordance to Google's specifications.
        $images = array_slice( $images, 0, 1000 );
        $this->updatePost( $post->ID, $this->buildEntries( $images ) );
    }