Translating theme options from an array
-
My theme has some options, something like this:
a:2:{ s:4:"logo";s:31:"https://www.example.com/logo.jpg"; s:14:"carouselslides";a:2: { i:0;a:4: { s:3:"img";s:28:"https://www.example.com/1.jpg"; s:4:"link";s:29:"https://www.example.com/1.html"; s:5:"title";s:8:"Title #1"; s:7:"content";s:0:""; } i:1;a:4: { s:3:"img";s:28:"https://www.example.com/2.jpg"; s:4:"link";s:29:"https://www.example.com/2.html"; s:5:"title";s:8:"Title #2"; s:7:"content";s:0:""; } } }
I have successfully registered the “logo” for translation by calling pll_register_string(‘my theme’, $options[“logo”]), but I’m not sure how to call the pll_register_string (if possible) for translating img, link and title attributes from the carouselslides array.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Translating theme options from an array’ is closed to new replies.