Ejemplo n.º 1
0
/**
 *
 * List option keys using for injecting sub theme options in the form
 *
 * general: for General Option
 * pages: for General Option 
 * fonts: for General Option
 * general: for General Option
 * general: for General Option
 * general: for General Option
 */
function optionsframework_options()
{
    $options = array();
    // $options['general'][] = array(
    //     'name' => __( 'Logo', TEXTDOMAIN ),
    //     'desc' => '',
    //     'id' => 'logo',
    //     'type' => 'upload'
    // );
    // $options['general'][] = array(
    //     'name' => __( 'Logo', TEXTDOMAIN ),
    //     'desc' => '',
    //     'id' => 'logo',
    //     'type' => 'upload'
    // );
    $wp_editor_settings = array('wpautop' => true, 'textarea_rows' => 5, 'media_buttons' => true);
    $options['general'][] = array('name' => __('Copyright', TEXTDOMAIN), 'id' => 'copyright', 'type' => 'editor', 'std' => 'Copyright 2013 Powered by <a href="http://wordpress.org/" target="_blank">Wordpress</a><br>All Rights Reserved.', 'settings' => $wp_editor_settings);
    $imagepath = get_template_directory_uri() . '/images/options/';
    $options['general'][] = array('name' => "Header Skin", 'desc' => "Images for layout header.", 'id' => "header", 'std' => "default", 'type' => "images", 'options' => array('default' => $imagepath . 'header-default.jpg', 'style2' => $imagepath . 'header-style2.jpg'));
    $options['general'][] = array('name' => "Footer Skin", 'desc' => "Images for layout footer.", 'id' => "footer", 'std' => "default", 'type' => "images", 'options' => array('default' => $imagepath . 'footer-1.jpg', 'style2' => $imagepath . 'footer-2.jpg'));
    $newoptions = WPO_Option::getInstance()->getOption($options);
    /*
     *  if you would like to make new  options in new tabs. you  meger owner options with $newoptions
     *
     *  $owneroptions[] = array(
     *    'name' => __( 'Logo', TEXTDOMAIN ),
     *    'desc' => '',
     *    'id' => 'logo',
     *    'type' => 'upload'
     *  );
     *
     *  $newoptions = array_merge_recursive( $newoptions, $owneroptions );
     */
    return $newoptions;
}
Ejemplo n.º 2
0
/**
 *
 * List option keys using for injecting sub theme options in the form
 *
 * general: for General Option
 * pages: for General Option 
 * fonts: for General Option
 * general: for General Option
 * general: for General Option
 * general: for General Option
 */
function optionsframework_options()
{
    // $options['general'][] = array(
    //     'name' => __( 'Logo', TEXTDOMAIN ),
    //     'desc' => '',
    //     'id' => 'logo',
    //     'type' => 'upload'
    // );
    // $options['general'][] = array(
    //     'name' => __( 'Logo', TEXTDOMAIN ),
    //     'desc' => '',
    //     'id' => 'logo',
    //     'type' => 'upload'
    // );
    $options = array();
    $options['general'][] = array('name' => __('Image Footer', TEXTDOMAIN), 'desc' => '', 'id' => 'image-footer', 'type' => 'upload');
    $newoptions = WPO_Option::getInstance()->getOption($options);
    /*
     *  if you would like to make new  options in new tabs. you  meger owner options with $newoptions
     *
     *  $owneroptions[] = array(
     *    'name' => __( 'Logo', TEXTDOMAIN ),
     *    'desc' => '',
     *    'id' => 'logo',
     *    'type' => 'upload'
     *  );
     *
     *  $newoptions = array_merge_recursive( $newoptions, $owneroptions );
     */
    return $newoptions;
}
Ejemplo n.º 3
0
/**
 *
 * List option keys using for injecting sub theme options in the form
 *
 * general: for General Option
 * pages: for General Option
 * fonts: for General Option
 * general: for General Option
 * general: for General Option
 * general: for General Option
 */
function optionsframework_options()
{
    $options = array();
    $wp_editor_settings = array('wpautop' => true, 'textarea_rows' => 5, 'media_buttons' => true);
    $options['general'][] = array('name' => __('Banner Top', TEXTDOMAIN), 'desc' => '', 'id' => 'banner-top', 'type' => 'upload');
    $options['general'][] = array('name' => __('Image Footer', TEXTDOMAIN), 'desc' => '', 'id' => 'image-footer', 'type' => 'upload');
    $imagepath = get_template_directory_uri() . '/images/options/';
    $options['general'][] = array('name' => "Header Skin", 'desc' => "Images for layout header.", 'id' => "header", 'std' => "default", 'type' => "images", 'options' => array('default' => $imagepath . 'header-style1.png', 'style2' => $imagepath . 'header-style2.png', 'style3' => $imagepath . 'header-style3.png'));
    $newoptions = WPO_Option::getInstance()->getOption($options);
    /*
     *  if you would like to make new  options in new tabs. you  meger owner options with $newoptions
     *
     *  $owneroptions[] = array(
     *    'name' => __( 'Logo', TEXTDOMAIN ),
     *    'desc' => '',
     *    'id' => 'logo',
     *    'type' => 'upload'
     *  );
     *
     *  $newoptions = array_merge_recursive( $newoptions, $owneroptions );
     */
    return $newoptions;
}