Make small changes to function.php through a child theme.
I want to change the number of images a user can upload. I know that I can do through through modifying the functions.php file.
I have copied the folder /examples/vantage-child to /themes/vantage-child
In that folder there are two files: archive-listing.php , functions.php , style.css
I have added the following line to functions.php and that is the only line in the file.
define( 'VA_MAX_IMAGES', 10 );
However the change isn't being reflected by the site.
What am I missing?