$field_value ) { if ( $field_value !== 'undefined' ) { if ( $field_name !== 'id' ) { $f_n = ucfirst( $field_name ); pll_register_string( $f_n, $field_value); } } } } } } /** * Features section. Register strings for translations. * * @modified 1.1.30 * @access public */ /* Service Content translation */ function busiprof_features_register_strings() { busiprof_pll_string_register_helper( 'busiprof_service_content', 'Service section' ); } /* Testimonial Content translation */ function busiprof_testimonials_register_strings() { busiprof_pll_string_register_helper( 'busiprof_testimonial_content', 'Testimonials section' ); } if ( function_exists( 'pll_register_string' ) ) { add_action( 'after_setup_theme', 'busiprof_features_register_strings', 11 ); add_action( 'after_setup_theme', 'busiprof_testimonials_register_strings', 11 ); }