I’m going to build my first Child Theme. I understood how to override functions (hope!), but how to override variables?
For example, in a Premium Template I want to change the values of feed variables shown in functions.php:
$app_rss_feed = 'http://xxx.rss';
$app_twitter_rss_feed = 'http://yyy.rss';
$app_forum_rss_feed = 'http://zzz.rss';
But if I create my functions.php file inside my child theme and assign a different RSS feed value to these variables… nothing happens.
So, which is the right way to change variables?