'
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); function bubbles_theme_setup() { add_theme_support('post-thumbnails'); add_theme_support( 'automatic-feed-links' ); if ( function_exists( 'register_nav_menus' ) ) { register_nav_menus( array( 'primary' => 'Primary Menu', ) ); } // Set default content width based on the theme's layout. This affects the width of post images and embedded media. global $content_width; if( ! isset( $content_width ) ) $content_width = 540; // Styles the post editor add_editor_style(); // Makes theme translation ready load_theme_textdomain( 'bubbles-theme', get_template_directory() . '/languages' ); } add_action( 'after_setup_theme', 'bubbles_theme_setup' ); // Enqueue sylesheet and script function bubles_theme_script_and_style() { wp_register_script('postmetashow', get_template_directory_uri() . '/js/postmetashow.js', array('jquery'), true); wp_register_style('bubbles-theme-style', get_stylesheet_uri()); wp_enqueue_script('postmetashow'); wp_enqueue_style('bubbles-theme-style'); } add_action('wp_enqueue_scripts', 'bubles_theme_script_and_style'); // ==================== // = Add options page = // ==================== function themeoptions_admin_menu() { // here's where we add our theme options page link to the dashboard sidebar add_theme_page("Bubbles Theme Options", "Bubbles Theme Options", 'edit_themes', basename(__FILE__), 'themeoptions_page'); } function themeoptions_page() { if ( $_POST['update_themeoptions'] == 'true' ) { themeoptions_update(); } //check options update // here's the main function that will generate our options page ?>

Bubbles Theme Options

Your social links


example:
http://www.facebook.com/bubbles


example:
http://twitter.com/bubbles