getting default values from wordpress theme options

I want to set some default values in my wordpress theme options, so that when the theme is activated, I can get the default values for the fields. Following is my code, it displays the default values in the theme options page, but I can not get the default values in the variables before i save the options.
Is there anyway to get the default values from the theme options before saving? Thanks.

//set default options
$sa_options = array(
    'footer_copyright' => '© ' . date('Y') . ' ' . get_bloginfo('name'),
    'intro_text' => 'some text',
    'featured_cat' => ''    
);


//register settings
function sa_register_settings() {
    register_setting( 'sa_theme_options', 'sa_options', 'sa_validate_options' );
}
add_action( 'admin_init', 'sa_register_settings' );


//add theme options page
function sa_theme_options() {
    add_theme_page( 'Theme Options', 'Theme Options', 'edit_theme_options', 'theme_options', 'sa_theme_options_page' );
}
add_action( 'admin_menu', 'sa_theme_options' );


// Function to generate options page
function sa_theme_options_page() {

    global $sa_options;

    <?php if ( false !== $_REQUEST['updated'] ) : ?>
    <div class="updated fade"><p><?php _e( 'Options saved' ); ?></p></div>
    <?php endif; ?>

    <form method="post" action="options.php">

    <?php $settings = get_option( 'sa_options', $sa_options ); ?>

    <?php settings_fields( 'sa_theme_options' ); ?>

    <input id="footer_copyright" name="sa_options[footer_copyright]" type="text" value="<?php  esc_attr_e($settings['footer_copyright']); ?>" />

Related posts

Leave a Reply

1 comment

  1. here is how I’d do it:
    define a get defaults function

    function sa_theme_get_defaults(){
        return = array(
            'footer_copyright' => '&copy; ' . date('Y') . ' ' . get_bloginfo('name'),
            'intro_text' => 'some text',
            'featured_cat' => ''
        );
    }
    

    then in your sa_theme_options_page() replace :

    <?php $settings = get_option( 'sa_options', $sa_options ); ?>
    

    with :

    <?php $settings = get_option( 'sa_options', sa_theme_get_defaults() ); ?>
    

    and in your sa_validate_options() function get the defaults and loop over the array eg:

    function sa_validate_options($input){
        //do regular validation stuff
        //...
        //...
    
        //get all options
        $options = get_option( 'sa_options', sa_theme_get_defaults() );
        //update only the needed options
        foreach ($input as $key => $value){
            $options[$key] = $value;
        }
        //return all options
        return $options;
    }