%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 54.36.91.62 / Your IP : 216.73.217.162 Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : wellingtpa ( 97533) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wellingtpa/www/wp-content/plugins/kata-plus/includes/elementor/modules/post-title/ |
Upload File : |
<?php
/**
* Post Title module config.
*
* @author ClimaxThemes
* @package Kata Plus
* @since 1.0.0
*/
// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
class Kata_Plus_Post_Title extends Widget_Base {
public function get_name() {
return 'kata-plus-post-title';
}
public function get_title() {
return esc_html__( 'Post Title', 'kata-plus' );
}
public function get_icon() {
return 'kata-widget kata-eicon-post-title';
}
public function get_categories() {
return array( 'kata_plus_elementor_blog_and_post' );
}
protected function register_controls() {
$this->start_controls_section(
'section_settings',
array(
'label' => esc_html__( 'Settings', 'kata-plus' ),
'tab' => Controls_Manager::TAB_CONTENT,
)
);
$this->add_control(
'tag',
array(
'label' => __( 'Title Tag', 'kata-plus' ),
'type' => Controls_Manager::SELECT,
'default' => 'h4',
'options' => array(
'h1' => __( 'H1', 'kata-plus' ),
'h2' => __( 'H2', 'kata-plus' ),
'h3' => __( 'H3', 'kata-plus' ),
'h4' => __( 'H4', 'kata-plus' ),
'h5' => __( 'H5', 'kata-plus' ),
'h6' => __( 'H6', 'kata-plus' ),
'p' => __( 'P', 'kata-plus' ),
'span' => __( 'Span', 'kata-plus' ),
),
)
);
$this->end_controls_section();
$this->start_controls_section(
'styles_section',
array(
'label' => esc_html__( 'Styles', 'kata-plus' ),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_control(
'styler_post_title',
array(
'label' => esc_html__( 'Post Title', 'kata-plus' ),
'type' => 'styler',
'selector' => '.kata-single-post-title',
'isSVG' => true,
'isInput' => false,
'wrapper' => '{{WRAPPER}}',
)
);
$this->end_controls_section();
// Common controls
do_action( 'kata_plus_common_controls', $this );
}
protected function render() {
require __DIR__ . '/view.php';
}
}