options = Simple_Author_Box_Helper::get_option( 'saboxplugin_options' );
echo '';
echo '
'; // start saboxplugin-wrap div
// author box gravatar
$avatar_classes = 'saboxplugin-gravatar';
if ( '1' == $this->options['sab_avatar_hover'] ) {
$avatar_classes .= ' sab-rotate-img';
}
if ( '1' == $this->options['sab_avatar_style'] ) {
$avatar_classes .= ' sab-round-image';
}
echo '
';
echo get_avatar( 1, 100, 'mystery', '', array( 'force_default' => true ) );
echo '
';
// author box name
echo '
';
echo apply_filters( 'sabox_preview_author_html', '
John Doe' );
echo '
';
// author box description
echo '
';
echo '
';
echo wp_kses_post( 'Sed non elit aliquam, tempor nisl vitae, euismod quam. Nulla et lacus lectus. Nunc sed tincidunt arcu. Nam maximus luctus nunc, in ullamcorper turpis luctus ac. Morbi a leo ut metus mollis facilisis. Integer feugiat dictum dolor id egestas. Interdum et malesuada fames ac ante ipsum primis in faucibus.' );
echo '
';
echo '
';
echo '
';
// author box clearfix
echo '
';
$social_links = Simple_Author_Box_Helper::$social_icons;
$social_links['user_email'] = '#';
$extra_class = ' sab-show-simple';
if ( '1' == $this->options['sab_colored'] ) {
if ( '1' == $this->options['sab_icons_style'] ) {
$extra_class = ' sab-show-circle';
}else{
$extra_class = ' sab-show-square';
}
}
if ( '1' != $this->options['sab_box_long_shadow'] ) {
$extra_class .= ' without-long-shadow';
}
if ( '1' == $this->options['sab_social_hover'] ) {
$extra_class .= ' sab-rotate-icons';
}
if ( '1' == $this->options['sab_box_thin_border'] ) {
$extra_class .= ' sab-icons-with-border';
}
echo '';
echo '
'; // end of saboxplugin-wrap div
echo '