Skip to main content

Posts

Showing posts with the label Yoast plugin

Wordpress Yoast, Change breadcrumb trail from post to page

WordPress Yoast, Change breadcrumb trail from  to page Please use the below WordPress in the theme Function (functions.php) file add_filter('wpseo_breadcrumb_links', 'wpse_post_breadcrumbs'); // $links are the current breadcrumbs function wpse_post_breadcrumbs($links) {     // Use is_singular($post_type) to identify a single CPT     // This assumes your CPT is called "post" - change it as needed  if(is_singular('post')) {         // The first item in $links ($links[0]) is Home, so skip it         // The second item in $links is Projects - we want to change that         $links[1] = array('text' => 'News', 'url' => '/news/', 'allow_html' => 1);     }     // Even if we didn't change anything, always return the breadcrumbs     return $links; }