View file File name : post-title.php Content :<?php namespace ElementorPro\Modules\DynamicTags\Tags; use ElementorPro\Modules\DynamicTags\Tags\Base\Tag; use ElementorPro\Modules\DynamicTags\Module; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Post_Title extends Tag { public function get_name() { return 'post-title'; } public function get_title() { return esc_html__( 'Post Title', 'elementor-pro' ); } public function get_group() { return Module::POST_GROUP; } public function get_categories() { return [ Module::TEXT_CATEGORY ]; } public function render() { echo wp_kses_post( get_the_title() ); } }