__( 'Excerpt of your story. Be confident and let others know it.', 'auw_widget' ) ) ); } //form function form($instance){ /* Set up some default widget settings. */ $blogname = get_bloginfo( 'name' ); $defaults = array( 'title' => 'About '.$blogname, 'auw_thumbnail' => site_url().'/wp-admin/images/wordpress-logo.svg', 'auw_about_textarea' => $blogname.' is a beautifully crafted blogging theme for travellers. Built with the finest pixel quality and best coding practices by fernando villamor.', 'auw_about_url' => '#', ); $instance = wp_parse_args( (array) $instance, $defaults ); if ($instance){ $title = esc_attr($instance['title']); //auw_thumbnail $auw_thumbnail = esc_attr($instance['auw_thumbnail']); //textarea $auw_about_textarea = esc_attr($instance['auw_about_textarea']); //textarea $auw_about_url = esc_attr($instance['auw_about_url']); } else { $title = ''; $auw_thumbnail = ''; $auw_about_textarea = ''; $auw_about_url = ''; } ?>

Need more customization here. Contact Fernando Villamor Jr


'; if ($title) { echo $before_title . $title . $after_title; } if ($auw_thumbnail) { echo ''; } if ($auw_about_textarea) { echo '

'.$auw_about_textarea.'

'; } if ($auw_about_url) { echo 'Learn more'; } echo ""; echo $after_widget; } } ?>