- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
58 lines
2.6 KiB
PHP
58 lines
2.6 KiB
PHP
<?php
|
|
/**
|
|
* Template part for displaying a post's footer
|
|
*
|
|
* @package kadence
|
|
*/
|
|
|
|
namespace Kadence;
|
|
|
|
use function Kadence\kadence;
|
|
use function get_the_author;
|
|
use function get_avatar;
|
|
use function get_the_author_meta;
|
|
use function the_author_meta;
|
|
use function get_the_author_posts_link;
|
|
|
|
kadence()->print_styles( 'kadence-author-box' );
|
|
$social_links_open_new_tab = kadence()->option( 'social_links_open_new_tab' );
|
|
?>
|
|
<div class="entry-author entry-author-style-<?php echo esc_attr( kadence()->option( 'post_author_box_style' ) ); ?><?php echo kadence()->option( 'post_footer_area_boxed' ) ? ' content-bg entry-content-wrap entry' : ''; ?>">
|
|
<div class="entry-author-profile author-profile vcard">
|
|
<div class="entry-author-avatar">
|
|
<?php echo get_avatar( get_the_author_meta( 'ID' ), 80 ); ?>
|
|
</div>
|
|
<b class="entry-author-name author-name fn"><?php echo wp_kses_post( kadence()->option( 'post_author_box_link' ) ? get_the_author_posts_link() : get_the_author() ); ?></b>
|
|
<?php if ( get_the_author_meta( 'occupation' ) ) { ?>
|
|
<p class="entry-author-occupation author-occupation"><?php the_author_meta( 'occupation' ); ?></p>
|
|
<?php } ?>
|
|
<div class="entry-author-description author-bio">
|
|
<?php the_author_meta( 'description' ); ?>
|
|
</div>
|
|
<div class="entry-author-follow author-follow">
|
|
<?php
|
|
foreach ( [ 'facebook', 'twitter', 'instagram', 'threads', 'youtube', 'flickr', 'vimeo', 'linkedin', 'pinterest', 'dribbble', 'amazon', 'medium', 'goodreads', 'bookbub' ] as $social ) {
|
|
if ( get_the_author_meta( $social ) ) {
|
|
$url = get_the_author_meta( $social );
|
|
$name = 'twitter' === $social ? 'x formerly Twitter' : $social;
|
|
$icon = 'twitter' === $social ? 'twitterAlt2' : $social;
|
|
$icon = 'instagram' === $social ? 'instagramAlt' : $icon;
|
|
|
|
// Might need some special parsing if rank math is active.
|
|
if ( defined( 'RANK_MATH_VERSION' ) && ! str_contains( $url, '.com' ) ) {
|
|
if ( 'twitter' == $social ) {
|
|
$url = 'https://twitter.com/' . $url;
|
|
}
|
|
}
|
|
?>
|
|
<a href="<?php echo esc_url( $url ); ?>" class="<?php echo esc_attr( $social ); ?>-link social-button" target="<?php echo esc_attr( $social_links_open_new_tab ? '_blank' : '_self' ); ?>" rel="noopener" title="<?php /* translators: 1: Author Name, 2: Social Media Name */ printf( esc_attr__( 'Follow %1$s on %2$s', 'kadence' ), esc_attr( get_the_author_meta( 'display_name' ) ), esc_attr( ucfirst( $name ) ) ); ?>">
|
|
<?php kadence()->print_icon( $icon, '', false ); ?>
|
|
</a>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
</div><!--.author-follow-->
|
|
</div>
|
|
</div><!-- .entry-author -->
|