How to set the default value of a option in a theme?
As @Ashfame as already pointed out, you shouldn’t store defaults in the database – that should be for user selected options (of course, if they select the defaults, then fine – store them :). However, you don’t need to use wp_parse_args() either. get_option allows you to select a default value. For instance: //If nuod_logo is … Read more