'; } //twitter function awesome_sidebar_twitter() { $twitter = esc_attr( get_option( 'twitter_url' ) ); echo ''; } //gplus function awesome_sidebar_gplus() { $gplus = esc_attr( get_option( 'gplus_url' ) ); echo ''; } //linkedin function awesome_sidebar_linkedin() { $linkedin = esc_attr( get_option( 'linkedin_url' ) ); echo ''; } // //Funtion add topbar function awesome_topbar_custom_settings() { register_setting( 'awesome-topbar-group', 'phone_no' ); register_setting( 'awesome-topbar-group', 'email_id' ); //add field function add_settings_section( 'awesome-topbar-options', 'Topbar Details', 'awesome_topbar_options', 'awesome-portfolio-topbar'); add_settings_field( 'topbar-phone', 'Phone No', 'awesome_topbar_phone', 'awesome-portfolio-topbar', 'awesome-topbar-options'); add_settings_field( 'topbar-email', 'Email Id', 'awesome_topbar_email', 'awesome-portfolio-topbar', 'awesome-topbar-options'); } //Activate custom settings add_action( 'admin_init', 'awesome_topbar_custom_settings' ); //facebook function awesome_topbar_phone() { $phone = esc_attr( get_option( 'phone_no' ) ); echo ''; } //twitter function awesome_topbar_email() { $email= esc_attr( get_option( 'email_id' ) ); echo ''; } function awesome_topbar_options() { } //function function awesome_sidebar_options(){ } function awesome_portfolio_theme_option() { //generation of our admin page echo"Welcome"; } function awesome_portfolio_theme_create_page() { settings_errors(); ?>