wpseo_breadcrumb_output_class хук-фильтр . Yoast 1.0
Filter: 'wpseo_breadcrumb_output_class' - Allow changing the HTML class on the Yoast SEO breadcrumbs wrapper element.
Использование
add_filter( 'wpseo_breadcrumb_output_class', 'filter_function_name_6658' ); function filter_function_name_6658( $unsigned ){ // filter... return $unsigned; }
- $unsigned(строка)
- Class to add to the wrapper element.
Где вызывается хук
wpseo_breadcrumb_output_class
yoast/src/presenters/breadcrumbs-presenter.php 210
$this->class = \apply_filters( 'wpseo_breadcrumb_output_class', '' );