Usage:

add_filter(filter_name, your_function_name);

express_featured_banner_posttypes

Param: Array $ptypes
Default:

array('post', 'page')

Description: Defines which post types support featured image as banner

Example usage

function my_banner_ptypes($ptypes){
array_push($ptypes, 'my_custom_ptype');
return $ptypes;
}

add_filter('express_featured_banner_posttypes', 'my_banner_ptypes');

  • sircontheme_fontselection
    • Param: Array of font names (key(string) => name(string))
    • Description: Google fonts to be included in settings font selection
  • express_icon_items
    • Param: Array of items (key(string) => content(string|array))
    • Description: Icon items to be included in item output.

Location: actions/theme-settings-setup.php

  • express_setting_frontpage-output
    • Param: Array of frontpage output choices (key(string) => value(string))
    • Description: Options for frontpage output
  • express_title_font_sizes
    • Param: Array of available title sizes (key(string) => value(string))
    • Description: Options for title size
  • express_body_font_sizes
    • Param: Array of available body font sizes (key(string) => value(string))
    • Description: Options for body font size

Location: actions/default/quicksettings.php

  • express_priority_js_files
    • Param: Array of js priority files (key(string ) => array(key=>value))
    • Description: Javascript files to be included in early js load.
  • express_js_files
    • Param: Array of js files (key(string ) => array(key=>value))
    • Description: Javascript files to be included in js load.
  • express_css_files
    • Param: Array of css files (key(string ) => array(key=>value))
    • Description: Css to be included. .scss also supported.