wp_kses(
__('© Bizmax 2021 | All Right Reserved', 'bizmax'), bizmax_allow_html()
),
'footer_info_left_text' => wp_kses(
__('Bizmax | Developed by: ThemeGlow', 'bizmax'), bizmax_allow_html()
),
'not_found_text' => wp_kses(
__('
Oops!
Sorry, The page you are looking for no longer exists.
', 'bizmax'), bizmax_allow_html()
),
'footer_top_left_text' => wp_kses(
__('LET\'S CREATE
SOMETHING TOGETHER
Want to schedule a demo or just have a few questions? We’re here to help you. Reach out today and let’s start working on smart solutions for your business.', 'bizmax'), bizmax_allow_html()
),
'post_banner_title' => esc_html__('Blog', 'bizmax'),
'blog_title' => esc_html__('Blog', 'bizmax'),
'blog_read_more_text' => esc_html__('Read More', 'bizmax'),
'error_page_title' => esc_html__('Error 404', 'bizmax'),
'search_placeholder' => esc_html__('Search...', 'bizmax'),
'cta_text' => esc_html__('Contact Us', 'bizmax'),
);
}
//Add custom icon set
/**
* Enqueue Backend Styles And Scripts.
**/
function bizmax_enqueue_backend_icon_for_csf() {
}
add_action('admin_enqueue_scripts', 'bizmax_enqueue_backend_icon_for_csf');
if (!function_exists('bizmax_csf_custom_icons')) {
function bizmax_csf_custom_icons($icons) {
// Adding new icons
$icons[] = array();
return $icons;
}
add_filter('csf_field_icon_add_icons', 'bizmax_csf_custom_icons');
}