Merge pull request #2060 from ttamnedlog/remove-php-shorthand
Remove php blade shorthand
This commit is contained in:
@@ -18,10 +18,10 @@ if (post_password_required()) {
|
|||||||
<nav>
|
<nav>
|
||||||
<ul class="pager">
|
<ul class="pager">
|
||||||
@if (get_previous_comments_link())
|
@if (get_previous_comments_link())
|
||||||
<li class="previous">@php(previous_comments_link(__('← Older comments', 'sage')))</li>
|
<li class="previous">@php previous_comments_link(__('← Older comments', 'sage')) @endphp</li>
|
||||||
@endif
|
@endif
|
||||||
@if (get_next_comments_link())
|
@if (get_next_comments_link())
|
||||||
<li class="next">@php(next_comments_link(__('Newer comments →', 'sage')))</li>
|
<li class="next">@php next_comments_link(__('Newer comments →', 'sage')) @endphp</li>
|
||||||
@endif
|
@endif
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
@php(dynamic_sidebar('sidebar-primary'))
|
@php dynamic_sidebar('sidebar-primary') @endphp
|
||||||
|
|||||||
Reference in New Issue
Block a user