33 lines
1.8 KiB
PHP
33 lines
1.8 KiB
PHP
<?php
|
|
$prefix = blocksy_manager()->screen->get_prefix();
|
|
?>
|
|
|
|
<section class="tainacan-item-section tainacan-item-section--metadata">
|
|
<?php if ( get_theme_mod($prefix . '_display_section_labels', 'yes') == 'yes' && get_theme_mod($prefix . '_section_metadata_label', __( 'Metadata', 'tainacan-blocksy' )) != '' ) : ?>
|
|
<h2 class="tainacan-single-item-section" id="tainacan-item-metadata-label">
|
|
<?php echo esc_html( get_theme_mod($prefix . '_section_metadata_label', __( 'Metadata', 'tainacan-blocksy' ) ) ); ?>
|
|
</h2>
|
|
<?php endif; ?>
|
|
<div class="tainacan-item-section__metadata <?php echo get_theme_mod($prefix . '_metadata_list_structure_type', 'metadata-type-1') ?>">
|
|
<?php if (has_post_thumbnail() && (get_theme_mod($prefix . '_show_thumbnail', 'no') === 'yes') ): ?>
|
|
<div class="tainacan-item-section__metadata-thumbnail">
|
|
<h3 class="tainacan-metadata-label"><?php _e( 'Thumbnail', 'tainacan-blocksy' ); ?></h3>
|
|
<p class="tainacan-metadata-value"><?php the_post_thumbnail('tainacan-medium-full'); ?></p>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php do_action( 'tainacan-blocksy-single-item-metadata-begin' ); ?>
|
|
<?php
|
|
$args = array(
|
|
'display_slug_as_class' => true,
|
|
'before_title' => '<h3 class="tainacan-metadata-label">',
|
|
'after_title' => '</h3>',
|
|
'before_value' => '<p class="tainacan-metadata-value">',
|
|
'after_value' => '</p>',
|
|
'exclude_title' => (get_theme_mod($prefix . '_show_title_metadata', 'yes') === 'no')
|
|
);
|
|
tainacan_the_metadata( $args );
|
|
?>
|
|
<?php do_action( 'tainacan-blocksy-single-item-metadata-end' ); ?>
|
|
</div>
|
|
</section>
|