golden hour
/home/phakp/public_html/wp-content/themes/fluida/content
⬆️ Go Up
Upload
File/Folder
Size
Actions
content-notfound.php
583 B
Del
OK
content-page.php
1.28 KB
Del
OK
content-status.php
1.29 KB
Del
OK
content.php
2.18 KB
Del
OK
landing-page.php
274 B
Del
OK
user-bio.php
1.47 KB
Del
OK
Edit: user-bio.php
<?php /** * * The template for displaying author biography * * Used in single.php and arhive.php (author archives only) * * @package Fluida */ $fluida_heading_tag = ( is_single() ) ? 'h2' : 'h1'; ?> <div class="author-info" <?php cryout_schema_microdata( 'author' ); ?>> <<?php echo $fluida_heading_tag ?> class="page-title"> <?php echo __( 'Author:', 'fluida' ) . ' <strong' . cryout_schema_microdata( 'author-name', 0) . '>' . esc_attr( get_the_author() ) . '</strong>'; ?> </<?php echo $fluida_heading_tag ?>> <?php if ( get_the_author_meta( 'description' ) ) : ?> <div class="author-avatar" <?php cryout_schema_microdata( 'image' );?>> <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'fluida_author_bio_avatar_size', 80 ), '', '', array( 'extra_attr' => cryout_schema_microdata( 'url', 0) ) ); ?> </div><!-- .author-avatar --> <div class="author-description" <?php cryout_schema_microdata( 'author-description' ); ?>> <span><?php the_author_meta( 'description' ); ?></span> <?php if ( is_single() ) { ?> <div class="author-link"> <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" <?php cryout_schema_microdata( 'author-url' ); ?>> <?php printf( __( 'View all posts by ', 'fluida' ) . '%s <span class="meta-nav">→</span>', get_the_author() ); ?> </a> </div><!-- .author-link --> <?php } ?> </div><!-- .author-description --> <?php endif; ?> </div><!-- .author-info -->
Save