at path:
ROOT
/
wp-content
/
plugins
/
elementor
/
core
/
document-types
/
post.php
run:
R
W
Run
page-base.php
7.7 KB
2026-04-14 05:34:13
R
W
Run
Delete
Rename
page.php
2.65 KB
2026-04-14 05:34:13
R
W
Run
Delete
Rename
post.php
1.04 KB
2026-04-14 05:34:13
R
W
Run
Delete
Rename
error_log
up
📄
post.php
Save
<?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' ); } }