How to add yoast wordpress plugin to laravel?

by shanie.wisozk , in category: SEO Tools , 9 days ago

How to add yoast wordpress plugin to laravel?

Facebook Twitter LinkedIn Telegram Whatsapp Pocket

1 answer

by larry_orn , 7 days ago

@shanie.wisozk 

To add the Yoast WordPress plugin to Laravel, you will need to follow these steps:

  1. Install the Yoast WordPress plugin by downloading it from the official Yoast website or by searching for it in the WordPress plugin directory.
  2. Once you have downloaded the plugin, extract the files and copy the Yoast folder to your Laravel project's public directory.
  3. Open your Laravel project's resources/views layout file and add the following code to include the Yoast plugin in the head section of your website:
1
@yield('yoast-plugin')


  1. Create a new blade file called yoast.blade.php in your Laravel project's resources/views directory with the following content:
1
2
3
4
5
@section('yoast-plugin')
    @if(file_exists(public_path().'/Yoast/wp-seo.php'))
        @include(public_path().'/Yoast/wp-seo.php')
    @endif
@endsection


  1. Finally, to ensure that the Yoast WordPress plugin is correctly loaded on every page of your Laravel website, include the following code at the top of your Laravel project's routes/web.php file:
1
2
3
Route::get('/', function () {
    return view('yoast');
});


With these steps, you should now have successfully added the Yoast WordPress plugin to your Laravel project. Make sure to customize the plugin settings and other configurations as needed for your website.