Skip to content

Commit

Permalink
fixed tag icon in single page (sovware#1287)
Browse files Browse the repository at this point in the history
  • Loading branch information
kowsar89 authored Dec 22, 2022
1 parent dbe8e96 commit fb3505a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/single/fields/tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* @author wpWax
* @since 6.7
* @version 7.4.0
* @version 7.5.0
*/

if ( ! defined( 'ABSPATH' ) ) exit;
Expand All @@ -17,7 +17,7 @@
<?php foreach ( $listing->get_tags() as $tag ): ?>

<li>
<a href="<?php echo esc_url( get_term_link( $tag->term_id, ATBDP_TAGS ) ); ?>"><?php directorist_icon( 'las la-tag' ); ?> <?php echo esc_html( $tag->name ); ?></a>
<a href="<?php echo esc_url( get_term_link( $tag->term_id, ATBDP_TAGS ) ); ?>"><?php directorist_icon( $icon ); ?> <?php echo esc_html( $tag->name ); ?></a>
</li>

<?php endforeach; ?>
Expand Down

0 comments on commit fb3505a

Please sign in to comment.