WIP
This commit is contained in:
@@ -37,7 +37,12 @@ return [
|
|||||||
*
|
*
|
||||||
* here is where you can define your custom post types easily
|
* here is where you can define your custom post types easily
|
||||||
*/
|
*/
|
||||||
"custom-post-types" => [],
|
"custom-post-types" => [
|
||||||
|
[
|
||||||
|
"slug" => "team-member",
|
||||||
|
"archive" => "true",
|
||||||
|
]
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -321,6 +321,9 @@ class Site
|
|||||||
$this->cptSlugs[] = $cpt["slug"];
|
$this->cptSlugs[] = $cpt["slug"];
|
||||||
|
|
||||||
$options = $cpt['options'] ?? [];
|
$options = $cpt['options'] ?? [];
|
||||||
|
if (isset($cpt["archive"]) && $cpt["archive"]) {
|
||||||
|
$options["has_archive"] = $this->humanize($cpt["slug"], true);
|
||||||
|
}
|
||||||
$names = $this->generateLabels($cpt['slug']);
|
$names = $this->generateLabels($cpt['slug']);
|
||||||
|
|
||||||
$newCpt = new PostType($cpt['slug'], $options, $names);
|
$newCpt = new PostType($cpt['slug'], $options, $names);
|
||||||
|
|||||||
Reference in New Issue
Block a user