PHP code example of felixarntz / schema-breadcrumbs-for-wordpress-seo
1. Go to this page and download the library: Download felixarntz/schema-breadcrumbs-for-wordpress-seo library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
felixarntz / schema-breadcrumbs-for-wordpress-seo example snippets
function yourtheme_instantiate_class()
{
// only instantiate the class if Yoast breadcrumbs are used
if( function_exists( 'yoast_breadcrumb' ) )
{
Schema_Breadcrumbs::instance();
}
}
add_action( 'after_setup_theme', 'yourtheme_instantiate_class' );