AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 3.147.51.16   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/chroot/var/www/wp-content/themes/CubicWP/inc/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/chroot/var/www/wp-content/themes/CubicWP/inc/functions/post-author-bio-functions.php
<?php
/**
* Author bio box
*
* @package ListMode WordPress Theme
* @copyright Copyright (C) 2024 ThemesDNA
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
* @author ThemesDNA <[email protected]>
*/

class ListMode_Author_Bio {

    private static $instance;

    public static function get_instance() {
        if (null === self::$instance) {
            self::$instance = new self();
        }
        return self::$instance;
    }

    public function add_author_bio_box() {
        $content = '';

        if (is_single()) {
            $content .= '
                <div class="listmode-author-bio">
                    <div class="listmode-author-bio-inside">
                        <div class="listmode-author-bio-top">
                            <span class="listmode-author-bio-gravatar">
                                ' . get_avatar(get_the_author_meta('email'), 80) . '
                            </span>
                            <div class="listmode-author-bio-text">
                                <div class="listmode-author-bio-name">' . esc_html__('Author: ', 'listmode') . '<span>' . get_the_author_link() . '</span></div>
                                <div class="listmode-author-bio-text-description">' . wp_kses_post(get_the_author_meta('description', get_query_var('author'))) . '</div>
                            </div>
                        </div>
                    </div>
                </div>
            ';
        }

        return apply_filters('listmode_add_author_bio_box', $content);
    }

}
// Initialize the instance
ListMode_Author_Bio::get_instance();

Anon7 - 2022
AnonSec Team