PATH:
home
/
sparklp6
/
public_html
/
website_356c8563
/
wp-content
/
plugins
/
templately
/
includes
/
Builder
/
Types
<?php namespace Templately\Builder\Types; use Templately\Builder\Types\BaseTemplate; class Page extends BaseTemplate { static public function get_type(): string { return 'wp-page'; } static public function get_title(): string { return __( 'Page', 'templately' ); } static public function get_plural_title(): string { return __( 'Pages', 'templately' ); } public static function get_properties(): array { $properties = parent::get_properties(); $properties['support_wp_page_templates'] = true; $properties['cpt'] = 'page'; $properties['builder'] = false; return $properties; } }
[-] Single.php
[edit]
[-] Archive.php
[edit]
[-] BaseTemplate.php
[edit]
[-] .htaccess
[edit]
[-] Error.php
[edit]
[-] CourseArchive.php
[edit]
[-] CourseSingle.php
[edit]
[-] Search.php
[edit]
[-] ProductSingle.php
[edit]
[-] Page.php
[edit]
[-] Post.php
[edit]
[-] HeaderFooterBase.php
[edit]
[-] FluentProductSingle.php
[edit]
[-] Header.php
[edit]
[-] PageSingle.php
[edit]
[-] Footer.php
[edit]
[+]
..
[-] ProductArchive.php
[edit]
[-] ThemeTemplate.php
[edit]