When I create settings that contain an uploaded image and I use the get_option function in my homepage will this return the file path when used with piklist?
So if I have an upload field called ‘upload_mp4’ I can add it to this code here –
$theme_options = get_option('my_theme_settings');
$mp4_field = $theme_options['upload_mp4'];
echo '<source src=" . $mp4_field . " type="video/mp4">';
And $mp4_field would display the path of the upload?