38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php
|
|
if ( !defined( 'WPINC' ) ) {
|
|
die;
|
|
}
|
|
?>
|
|
|
|
<div class="singular-meta">
|
|
<?php $mf_tags = get_the_category(); ?>
|
|
<?php if( $mf_tags ): ?>
|
|
<div class="singular-categories">
|
|
<div class="categories-indicator">
|
|
<?php esc_html_e( 'Categories:', 'minimalistflex' ) ?>
|
|
</div>
|
|
<?php foreach( $mf_tags as $mf_tag ) { ?>
|
|
<div class="singular-category">
|
|
<a href="<?php echo esc_url( get_category_link( $mf_tag ) ) ?>">
|
|
<?php echo esc_html( $mf_tag->name ) ?>
|
|
</a>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php $mf_tags = get_the_tags(); ?>
|
|
<?php if( $mf_tags ): ?>
|
|
<div class="singular-categories singular-tags">
|
|
<div class="categories-indicator tags-indicator">
|
|
<?php esc_html_e( 'Tags:', 'minimalistflex' ) ?>
|
|
</div>
|
|
<?php foreach( $mf_tags as $mf_tag ) { ?>
|
|
<div class="singular-category singular-tag">
|
|
<a href="<?php echo esc_url( get_tag_link( $mf_tag ) ) ?>">
|
|
<?php echo esc_html( $mf_tag->name ) ?>
|
|
</a>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|