Submit
Path:
~
/
home
/
getwphos
/
public_html
/
almajd14
/
wp-content
/
plugins
/
halstein-core
/
inc
/
header
/
layouts
/
standard
/
File Content:
helper.php
<?php if ( ! function_exists( 'halstein_core_add_standard_header_global_option' ) ) { /** * This function set header type value for global header option map */ function halstein_core_add_standard_header_global_option( $header_layout_options ) { $header_layout_options['standard'] = array( 'image' => HALSTEIN_CORE_HEADER_LAYOUTS_URL_PATH . '/standard/assets/img/standard-header.png', 'label' => esc_html__( 'Standard', 'halstein-core' ), ); return $header_layout_options; } add_filter( 'halstein_core_filter_header_layout_option', 'halstein_core_add_standard_header_global_option' ); } if ( ! function_exists( 'halstein_core_set_standard_header_as_default_global_option' ) ) { /** * This function set header type as default option value for global header option map */ function halstein_core_set_standard_header_as_default_global_option() { return 'standard'; } add_filter( 'halstein_core_filter_header_layout_default_option_value', 'halstein_core_set_standard_header_as_default_global_option' ); } if ( ! function_exists( 'halstein_core_register_standard_header_layout' ) ) { /** * Function which add header layout into global list * * @param array $header_layouts * * @return array */ function halstein_core_register_standard_header_layout( $header_layouts ) { $header_layouts['standard'] = 'HalsteinCore_Standard_Header'; return $header_layouts; } add_filter( 'halstein_core_filter_register_header_layouts', 'halstein_core_register_standard_header_layout' ); }
Submit
FILE
FOLDER
Name
Size
Permission
Action
assets
---
0755
dashboard
---
0755
templates
---
0755
class-halsteincore-standard-header.php
1006 bytes
0644
helper.php
1522 bytes
0644
include.php
413 bytes
0644
N4ST4R_ID | Naxtarrr