• Resolved bimmerime

    (@bimmerime)


    Hello,

    how can I change the home breadcrumb url to a specific one i choose

    I tried to edit the wordpress-seo/frontend/class-breadcrumbs.php but i wasn’t so lucky
    I think I should change something here

    /**
    	 * Add Homepage crumb to the crumbs property
    	 */
    	private function add_home_crumb() {
    		$this->add_predefined_crumb(
    			$this->options['breadcrumbs-home'],
    			get_site_url(),
    			true
    		);
    	}

    https://wordpress.org/plugins/wordpress-seo/

Viewing 1 replies (of 1 total)
  • Thread Starter bimmerime

    (@bimmerime)

    nevermind i found it

    this is the code if any one is wondering

    /**
    	 * Add Homepage crumb to the crumbs property
    	 */
    	private function add_home_crumb() {
    		$this->add_predefined_crumb(
    			$this->options['breadcrumbs-home'],
    			get_home_url ('', 'your page slug'),
    			true
    		);
    	}
Viewing 1 replies (of 1 total)

The topic ‘change the home breadcrumb link’ is closed to new replies.