wp-plugin-boilerplate/templates/front/custom-page.blade.php

12 lines
302 B
PHP

@extends('layouts.front')
@section('content')
<p>Here is the content of the blade file, it will show in place of your shortcode.</p>
<p>Here are the attributes you passed in:</p>
<ul>
@foreach($shortcode['attributes'] as $key => $val)
<li>{{ $key }}: {{ $val }}</li>
@endforeach
</ul>
@endsection