アクセス許可管理

This commit is contained in:
2025-12-29 15:53:34 +09:00
parent decf69e8b4
commit 8c76fe2733
14 changed files with 127 additions and 12 deletions

View File

@@ -16,7 +16,7 @@ class Atom extends BlogPost {
public function feed(array $params): void {
try {
// 最新の投稿を取得
$posts = $this->getPosts('/blog/');
$posts = $this->getPosts('/blog/', null);
// 最新の5件に制限
$posts = array_slice($posts, 0, 5);