1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
$group_filter = 'Filter'; $group_color = 'Color';
// Shortcode settings return array( 'category' => esc_html__( 'PenNews WP Widget', 'penci-framework' ), 'name' => 'WP ' . __( 'Search' ), 'params' => array_merge( Penci_Framework_Shortcode_Params::block_title( ), Penci_Framework_Shortcode_Params::block_option_meta( array( 'hide_heading_meta_settings', 'hide_enable_stiky' ) ), Penci_Framework_Shortcode_Params::block_option_block_title(), Penci_Framework_Shortcode_Params::color_params( $shotcode_id, false ), Penci_Framework_Shortcode_Params::block_option_note_custom_fonts(), Penci_Framework_Shortcode_Params::block_option_typo( array( 'prefix' => 'block_title', 'title' => esc_html__( 'Block title settings' ), 'google_fonts' => Penci_Helper_Shortcode::get_font_family( 'oswald' ), 'font-size' => '18px', ) ) ) );
|