popnoire/site/OFF_plugins/autopublish.php

13 lines
284 B
PHP
Raw Normal View History

2026-02-12 15:22:46 +01:00
<?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());
}
}
});