/
home
/
rekodeb
/
osteo
/
wp-content
/
themes
/
zuperla
/
includes
/
Upload File
HOME
<?php /* * Visual Composer Extension Plugin Hooks * * @version 1.0 * @author Euthemians Team * @URI http://euthemians.com */ /** * Translation function returning the theme translations */ /* All */ function zuperla_eutf_theme_vce_get_string_all() { return esc_html__( 'All', 'zuperla' ); } /* Read more */ function zuperla_eutf_theme_vce_get_string_read_more() { return esc_html__( 'read more', 'zuperla' ); } /* In Categories */ function zuperla_eutf_theme_vce_get_string_categories_in() { return esc_html__( 'in', 'zuperla' ); } /* Author By */ function zuperla_eutf_theme_vce_get_string_by_author() { return esc_html__( 'By:', 'zuperla' ); } /* E-mail */ function zuperla_eutf_theme_vce_get_string_email() { return esc_html__( 'E-mail', 'zuperla' ); } /** * Hooks for portfolio translations */ add_filter( 'zuperla_eutf_vce_portfolio_string_all_categories', 'zuperla_eutf_theme_vce_get_string_all' ); /** * Hooks for blog translations */ add_filter( 'zuperla_eutf_vce_string_read_more', 'zuperla_eutf_theme_vce_get_string_read_more' ); add_filter( 'zuperla_eutf_vce_blog_string_all_categories', 'zuperla_eutf_theme_vce_get_string_all' ); add_filter( 'zuperla_eutf_vce_blog_string_categories_in', 'zuperla_eutf_theme_vce_get_string_categories_in' ); add_filter( 'zuperla_eutf_vce_blog_string_by_author', 'zuperla_eutf_theme_vce_get_string_by_author' ); /** * Hooks for general translations */ add_filter( 'zuperla_eutf_vce_product_string_all_categories', 'zuperla_eutf_theme_vce_get_string_all' ); add_filter( 'zuperla_eutf_vce_event_string_all_categories', 'zuperla_eutf_theme_vce_get_string_all' ); add_filter( 'zuperla_eutf_vce_string_email', 'zuperla_eutf_theme_vce_get_string_email' ); //Omit closing PHP tag to avoid accidental whitespace output errors.