wpseo_sitemap_urlimages_front_page хук-фильтрYoast 1.0

Filter images to be included for the term in XML sitemap.

Использование

add_filter( 'wpseo_sitemap_urlimages_front_page', 'wp_kama_wpseo_sitemap_urlimages_front_page_filter' );

/**
 * Function for `wpseo_sitemap_urlimages_front_page` filter-hook.
 * 
 * @param array $images Array of image items.
 *
 * @return array
 */
function wp_kama_wpseo_sitemap_urlimages_front_page_filter( $images ){

	// filter...
	return $images;
}
$images(массив)
Array of image items.

Где вызывается хук

WPSEO_Post_Type_Sitemap_Provider::get_first_links()
wpseo_sitemap_urlimages_front_page
yoast/inc/sitemaps/class-post-type-sitemap-provider.php 390
$image_list = apply_filters( 'wpseo_sitemap_urlimages_front_page', $images );

Где используется хук в Yoast SEO

Использование не найдено.