Skip to content

Commit

Permalink
🩹 Move get_header hook above wp_head() (Fixes #3171)
Browse files Browse the repository at this point in the history
  • Loading branch information
Log1x committed Jan 4, 2024
1 parent 66a3982 commit 94a1787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
@php(do_action('get_header'))
@php(wp_head())
</head>

<body @php(body_class())>
@php(wp_body_open())
@php(do_action('get_header'))

<div id="app">
<a class="sr-only focus:not-sr-only" href="#main">
Expand Down

0 comments on commit 94a1787

Please sign in to comment.