HEX
Server: Apache
System: Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64
User: server (1002)
PHP: 8.3.20
Disabled: exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source
Upload Files
File: /home/muoapartman/www/wp-content/themes/oceanica-lite/template-parts/biography.php
<?php
/**
 * The template part for displaying an Author biography
 *
 * @package oceanica-lite
 */
?>
<?php if (function_exists('jetpack_author_bio')) :
    jetpack_author_bio();
else:
    ?>
    <div class="author-entry">
        <h2 class="author-title"><span
                    class="author-heading"><?php esc_html_e('Author:', 'oceanica-lite'); ?></span> <?php echo get_the_author(); ?>
        </h2>
        <div class="author-avatar">
            <?php
            /**
             * Filter the oceanica author bio avatar size.
             */
            $author_bio_avatar_size = apply_filters('oceanica_author_bio_avatar_size', 60);
            echo get_avatar(get_the_author_meta('user_email'), $author_bio_avatar_size); ?>
        </div><!-- .author-avatar -->
        <div class="author-description">
            <p class="author-bio">
                <?php the_author_meta('description'); ?>
            </p><!-- .author-bio -->
            <p>
                <a class="author-link" href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>"
                   rel="author">
                    <?php
                        /* translators: %s: posts author */
                        printf(esc_html__('All Posts by %s', 'oceanica-lite'), get_the_author());
                    ?>
                </a>
            </p>
        </div><!-- .author-description -->
    </div><!-- .author-info -->
<?php endif; ?>