setIcon('hash') ->make([ 'rewrite' => [ 'slug' => 'before-and-after/by/themes', 'with_front' => false, 'hierarchical' => true ], 'description' => 'What makes up the tattoo, asides from style. From bees to ideas to carrots.', 'hierarchical' => true, 'for' => [ 'progress', ], ]) ->setAll([ 'show_directory', 'show_feed', ]); //$directory = $theme->getConfig('directory'); } function altr_theme_fields():void { if (!class_exists('JVBase\registrar\Registrar')) { return; } $theme = Registrar::getInstance('theme'); $fields = $theme->fields(); $fields->addField('similar', [ 'type' => 'selector', 'subtype'=> 'taxonomy', 'isReference'=> true, 'taxonomy' => 'theme', 'label' => 'Similar Themes' ]); $fields->addField('archive_title', [ 'type' => 'text', 'label' => 'Archive Title', 'hint' => 'If the generated title does not jive, set it here' ]); $fields->addCommon('wiki'); $fields->addCommon('alternate_name'); $fields->addCommon('keywords'); } function altr_theme_schema():array { return [ 'name' => 'How to remove {{name}} tattoos', 'description' => '{{description}}' ]; } function altr_theme_meta():array { return[ 'name' => 'How to remove {{name}} tattoos', 'description' => '{{description}}' ]; } function altr_theme_archive(array $defaults):array { return array_merge($defaults, [ 'name' => 'How to remove {{name}} tattoos', ]); } function altr_theme_reference_schema(array $defaults):array { return $defaults; } // //function altr_theme():array //{ // return [ // 'directory' => 'Themes', // 'show_directory' => true, //// 'isGrouped' => true, // 'description' => [ // 'What makes up the tattoo, asides from style.', // 'From bees to ideas to carrots.' // ], // 'singular' => 'Theme', // 'plural' => 'Themes', // 'icon' => 'hash', // 'show_feed' => true, // 'rewrite' => [ // 'slug' => 'before-and-after/by/themes', // 'with_front' => false, // 'hierarchical' => true, // ], // 'hierarchical' => true, // 'for_content' => [ // 'progress', // ], // 'seo' => [ // 'meta' => [ // 'title' => '{{term_name}} Tattoo Removal – Before & After Photos', // 'description' => 'Before and after photos of {{term_name}} tattoo removal by laser in Edmonton.', // ], // 'schema' => [ // 'type' => 'CollectionPage', // 'name' => '{{term_name}} Tattoo Removal Before & Afters', // 'description' => '{{term_description}}', // ], // 'archive' => [ // 'type' => 'CollectionPage', // 'name' => '{{term_name}} Tattoo Removal – Before & After Gallery', // ], // ], // 'fields' => [ // 'term_name' => [ // 'label' => 'Name', // 'type' => 'text', // 'quickEdit' => true, // ], // 'similar' => [ // 'type' => 'taxonomy', // 'taxonomy_type' => 'reference', // 'taxonomy' => 'theme', // 'label' => 'Similar Themes', // ], // 'description' => [ // 'type' => 'textarea', // 'quill' => true, // 'label' => 'Description', // ], // 'archive_title' => [ // 'type' => 'text', // 'label' => 'Archive Title', // 'description' => 'If the generated title does not jive, set it here', // ], // 'common' => [ 'wiki', 'alternate_name', 'keywords' ] // ] // ]; //}