Fatal error: Uncaught Error: Call to undefined function pll_register_string()
function register_services_strings() {
pll_register_string( 'Services', 'Услуги' );
pll_register_string( 'Service', 'Услуга' );
}
add_action( 'init', 'register_services_strings' );
function register_services_strings() {
if ( function_exists( 'pll_register_string' ) {
pll_register_string( 'Services', 'Услуги' );
pll_register_string( 'Service', 'Услуга' );
}
}
add_action( 'init', 'register_services_strings' );