File: /home/dailygoldindex/public_html/wp-content/themes/jnews/class/Module/Hero/Hero_14_Option.php
<?php
/**
* @author : Jegtheme
*/
namespace JNews\Module\Hero;
Class Hero_14_Option extends HeroOptionAbstract
{
protected $number_post = 8;
protected $show_style = false;
public function get_module_name()
{
return esc_html__('JNews - Hero 14', 'jnews');
}
public function show_color_scheme()
{
return true;
}
public function set_typography_option( $instance ) {
$instance->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'label' => esc_html__( 'Title Typography', 'jnews' ),
'description' => esc_html__( 'Set typography for post title', 'jnews' ),
'selector' => '{{WRAPPER}} .jeg_post_title > a',
]
);
$instance->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'meta_typography',
'label' => esc_html__( 'Meta Typography', 'jnews' ),
'description' => esc_html__( 'Set typography for post meta', 'jnews' ),
'selector' => '{{WRAPPER}} .jeg_post_meta, {{WRAPPER}} .jeg_post_meta .fa, {{WRAPPER}}.jeg_postblock .jeg_subcat_list > li > a:hover, {{WRAPPER}} .jeg_pl_md_card .jeg_post_category a, {{WRAPPER}}.jeg_postblock .jeg_subcat_list > li > a.current, {{WRAPPER}} .jeg_pl_md_5 .jeg_post_meta, {{WRAPPER}} .jeg_pl_md_5 .jeg_post_meta .fa, {{WRAPPER}} .jeg_post_category a',
]
);
$instance->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'content_typography',
'label' => esc_html__( 'Post Content Typography', 'jnews' ),
'description' => esc_html__( 'Set typography for post content', 'jnews' ),
'selector' => '{{WRAPPER}} .jeg_post_excerpt, {{WRAPPER}} .jeg_readmore',
]
);
}
}