popnoire/site/OFF_plugins/autopublish.php
2026-02-12 15:22:46 +01:00

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());
}
}
});