![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/gg.corals.io/wp-content/themes/bugster/templates/ |
<?php /** * The template to display the Author bio * * @package WordPress * @subpackage BUGSTER * @since BUGSTER 1.0 */ ?> <div class="author_info scheme_dark author vcard" itemprop="author" itemscope itemtype="//schema.org/Person"> <div class="author_avatar" itemprop="image"> <?php $bugster_mult = bugster_get_retina_multiplier(); echo get_avatar( get_the_author_meta( 'user_email' ), 120 * $bugster_mult ); ?> </div><!-- .author_avatar --> <div class="author_description"> <h5 class="author_title" itemprop="name"> <?php // Translators: Add the author's name in the <span> echo wp_kses_data( sprintf( __( 'About %s', 'bugster' ), '<span class="fn">' . get_the_author() . '</span>' ) ); ?> </h5> <div class="author_bio" itemprop="description"> <?php echo wp_kses( wpautop( get_the_author_meta( 'description' ) ), 'bugster_kses_content' ); ?> <a class="author_link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> <?php // Translators: Add the author's name in the <span> printf( esc_html__( 'Read More', 'bugster' ), '<span class="author_name">' . esc_html( get_the_author() ) . '</span>' ); ?> </a> <?php do_action( 'bugster_action_user_meta' ); ?> </div><!-- .author_bio --> </div><!-- .author_description --> </div><!-- .author_info -->