Skip to content

Instantly share code, notes, and snippets.

@mihdan
Created May 11, 2020 21:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mihdan/e8c67d5bb7726550bc18003c5a2b0294 to your computer and use it in GitHub Desktop.
Save mihdan/e8c67d5bb7726550bc18003c5a2b0294 to your computer and use it in GitHub Desktop.
Валидная разметка для Yoast SEO
<?php
if ( function_exists( 'wpseo_custom_breadcrumb' ) ) {
function wpseo_custom_breadcrumb_output_wrapper( $wrapper ) {
$wrapper = 'ol';
return $wrapper;
}
add_filter( 'wpseo_breadcrumb_output_wrapper', 'wpseo_custom_breadcrumb_output_wrapper' );
function wpseo_custom_breadcrumb_single_link_wrapper( $wrapper ) {
$wrapper = 'li';
return $wrapper;
}
add_filter( 'wpseo_breadcrumb_single_link_wrapper', 'wpseo_custom_breadcrumb_single_link_wrapper' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment