mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/colordive.git
synced 2026-07-16 11:36:39 +08:00
40 lines
No EOL
1.2 KiB
PHP
40 lines
No EOL
1.2 KiB
PHP
<?php if ( get_theme_mod('profile-image') || get_theme_mod('profile-name') || get_theme_mod('profile-description') || get_theme_mod('header-social') ): ?>
|
|
|
|
<div class="intro-card">
|
|
|
|
<?php if ( get_theme_mod('profile-image') ): ?>
|
|
<div class="intro-card-thumb">
|
|
|
|
<img src="<?php echo esc_html( get_theme_mod('profile-image') ); ?>" alt="" />
|
|
|
|
<div class="intro-circle">
|
|
<div class="intro-circle-spin">
|
|
<div class="intro-circle-dot"></div>
|
|
<div class="intro-circle-dot"></div>
|
|
<div class="intro-circle-dot"></div>
|
|
<div class="intro-circle-dot"></div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( get_theme_mod('profile-name') ): ?>
|
|
<h1 class="intro-card-title">
|
|
<?php echo esc_html( get_theme_mod('profile-name') ); ?>
|
|
</h1>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( get_theme_mod('profile-description') ): ?>
|
|
<div class="intro-card-desc">
|
|
<?php echo wp_kses_post( get_theme_mod('profile-description') ); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( get_theme_mod( 'header-social', 'on' ) == 'on' ): ?>
|
|
<?php colordive_social_links() ; ?>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|