12 lines
284 B
PHP
12 lines
284 B
PHP
<?php
|
|
|
|
kirby()->hook('panel.page.create', function($page) {
|
|
$templates = c::get('autopublish.templates');
|
|
if (!$templates || in_array($page->template(), $templates)) {
|
|
try {
|
|
$page->sort('last');
|
|
} catch(Exception $e) {
|
|
return response::error($e->getMessage());
|
|
}
|
|
}
|
|
});
|