I am trying to change breadcrumbs, I found the breadcrumb file in the wordpress theme. This is the first part of the old code
<?php
if (!function_exists('show_breadcrumbs')) {
function show_breadcrumbs() {
$delimiter = '»';
$name = 'Home'; //text for the 'Home' link
$currentBefore = '<span class="current_crumb">';
$currentAfter = '</span>';
New Code
<?php
if (!function_exists('show_breadcrumbs')) {
function show_breadcrumbs() {
$delimiter = '»';
$name = 'MY Own Breadcrumb'; //text for the 'MY Own Breadcrumb' link
$currentBefore = '<span class="current_crumb">';
$currentAfter = '</span>';
____________
In yoast it gives you an option to change the name of the breadcrumb but it says to install this code
<?php if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<p id="breadcrumbs">','</p>');
} ?>
but I have not idea where to insert this code. It says "In the theme" Anyone know where I put this?

