aboutsummaryrefslogtreecommitdiff
path: root/srcs/wordpress/wp-content/themes/twentytwenty/template-parts/entry-author-bio.php
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
commit5bf66662a9bdd62c5bccab15e607cd95cfb8fcab (patch)
tree39a1a4629749056191c05dfd899f931701b7acf3 /srcs/wordpress/wp-content/themes/twentytwenty/template-parts/entry-author-bio.php
parent5afd237bbd22028b85532b8c0b3fcead49a00764 (diff)
downloadft_server-master.tar.gz
ft_server-master.tar.bz2
ft_server-master.zip
Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my famillyHEADmaster
Diffstat (limited to 'srcs/wordpress/wp-content/themes/twentytwenty/template-parts/entry-author-bio.php')
-rw-r--r--srcs/wordpress/wp-content/themes/twentytwenty/template-parts/entry-author-bio.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/srcs/wordpress/wp-content/themes/twentytwenty/template-parts/entry-author-bio.php b/srcs/wordpress/wp-content/themes/twentytwenty/template-parts/entry-author-bio.php
deleted file mode 100644
index 14553c6..0000000
--- a/srcs/wordpress/wp-content/themes/twentytwenty/template-parts/entry-author-bio.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-/**
- * The template for displaying Author info
- *
- * @package WordPress
- * @subpackage Twenty_Twenty
- * @since 1.0.0
- */
-
-if ( (bool) get_the_author_meta( 'description' ) && (bool) get_theme_mod( 'show_author_bio', true ) ) : ?>
-<div class="author-bio">
- <div class="author-title-wrapper">
- <div class="author-avatar vcard">
- <?php echo get_avatar( get_the_author_meta( 'ID' ), 160 ); ?>
- </div>
- <h2 class="author-title heading-size-4">
- <?php
- printf(
- /* translators: %s: Author name */
- __( 'By %s', 'twentytwenty' ),
- esc_html( get_the_author() )
- );
- ?>
- </h2>
- </div><!-- .author-name -->
- <div class="author-description">
- <?php echo wp_kses_post( wpautop( get_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 _e( 'View Archive <span aria-hidden="true">&rarr;</span>', 'twentytwenty' ); ?>
- </a>
- </div><!-- .author-description -->
-</div><!-- .author-bio -->
-<?php endif; ?>