I installed a geotargeting plugin with different information for different cities and countries, in php it looks like this:
echo do_shortcode("[wt_geotargeting country_show='RU'] Вывод текста для России [/wt_geotargeting]"); Suppose I do not want to write information about the shortcode, I create a variable and put it in the code, it goes like this:
$block_1 = 'Блок 1'; echo do_shortcode("[wt_geotargeting country_show='RU'] $block_1 [/wt_geotargeting]"); Actually, the question is - the client needs to change the contents of the variable independently (insert pictures, text), how can you access the variable through the admin panel?