Blade is the engine for Laravel, popular php framework, developed by Taylor Otwell.
This plugin brings the engine to wordpress..
Normal php can still be used in the template files..
Turns into. if @if ) {{the post thumbnail }} @else @endif.
Turns into. the loop @wpposts {{the title }} @wpempty 404 @wpend.
Turns into. wordpress query @wpquery ) {{the title }} @wpempty {{ }} @wpend..
Turns into.. 'post ) ) > have posts ) > have posts ) $query->the post > Advanced Custom Fields @acfrepeater {{ get sub field }} @acfend..
To include file with blade use @include.
Files included with functions, e.g the header, will not be compiled by Blade, however the php code in the file is still executed..
Layouts master php @yield page php @layout @section Lorem ipsum @endsection.
Read more