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

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

add_filter( 'wpseo_breadcrumb_indexables', 'wp_kama_wpseo_breadcrumb_indexables_filter', 10, 2 );

/**
 * Function for `wpseo_breadcrumb_indexables` filter-hook.
 * 
 * @param  $indexables 
 * @param  $context    
 *
 * @return 
 */
function wp_kama_wpseo_breadcrumb_indexables_filter( $indexables, $context ){

	// filter...
	return $indexables;
}
$indexables
-
$context
-

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

Breadcrumbs_Generator::generate()
wpseo_breadcrumb_indexables
yoast/src/generators/breadcrumbs-generator.php 150
$indexables = \apply_filters( 'wpseo_breadcrumb_indexables', $indexables, $context );

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

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