Showing 7 of 1,975 result(s)
In general, responses are the collection of all comments and replies on any given page of your site. A comment may have its own collection of children comments; these are referred to as replies .
The is:before filter allows you to filter comments to those that appear before a certain date. It accepts either a UNIX timestamp, or the date as text input. The following example would return all comments that were submitted to the server before...
The is:after filter allows you to filter comments to those that appear after a certain date. It accepts either a UNIX timestamp, or the date as text input. The following example would return all comments that were submitted to the server after...
The prev method queues a <link rel="prev" href="..."> tag. By default it binds to the $meta_link_prev variable. 1 <?php 2 3 use Stillat\StatamicSiteEssentials\Support\Facades\Metadata ; 4 5 // Adjusting the returned variable. 6 Metadata ::...
The next method queues a <link rel="next" href="..."> tag. By default it binds to the $meta_link_next variable. 1 <?php 2 3 use Stillat\StatamicSiteEssentials\Support\Facades\Metadata ; 4 5 // Adjusting the returned variable. 6 Metadata ::...
The self method queues a <link rel="self" href="..."> tag. By default it binds to the $current_full_url variable. 1 <?php 2 3 use Stillat\StatamicSiteEssentials\Support\Facades\Metadata ; 4 5 // Adjusting the returned variable. 6 Metadata ::...
The url method queues a <meta property="og:url" content="..."> tag. By default it binds to the $current_full_url variable. 1 <?php 2 3 use Stillat\StatamicSiteEssentials\Support\Facades\Metadata ; 4 5 // Adjusting the returned variable. 6...