Skip to content

Instantly share code, notes, and snippets.

@buiquangduc
Created January 24, 2018 10:28
Show Gist options
  • Select an option

  • Save buiquangduc/bd758afda5bea845fb514df3762d4419 to your computer and use it in GitHub Desktop.

Select an option

Save buiquangduc/bd758afda5bea845fb514df3762d4419 to your computer and use it in GitHub Desktop.
Example of partial layout file
<header class="banner">
<div class="container">
<a class="brand" href="{{ home_url('/') }}">{{ get_bloginfo('name', 'display') }}</a>
<nav class="nav-primary">
Blade template header.
@if (has_nav_menu('primary_navigation'))
{!! wp_nav_menu(['theme_location' => 'primary_navigation', 'menu_class' => 'nav']) !!}
@endif
</nav>
</div>
</header>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment