File: /home/dailygoldindex/public_html/wp-content/themes/jnews/class/Module/Block/Block_11_Option.php
<?php
/**
* @author : Jegtheme
*/
namespace JNews\Module\Block;
Class Block_11_Option extends BlockOptionAbstract
{
protected $default_number_post = 4;
protected $show_excerpt = false;
protected $default_ajax_post = 4;
public function get_module_name()
{
return esc_html__('JNews - Module 11', 'jnews');
}
public function additional_style()
{
parent::additional_style();
$this->options[] = array(
'type' => 'colorpicker',
'param_name' => 'block_background',
'group' => esc_html__('Design', 'jnews'),
'heading' => esc_html__('Block Background', 'jnews'),
'description' => esc_html__('This option will change your Block Background', 'jnews'),
);
}
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',
]
);
}
}