| 1 |
<?php |
| 2 |
/** |
| 3 |
* Go to wishlist Page |
| 4 |
* |
| 5 |
* @var $page_url string Wishlist page url |
| 6 |
* @var $icon_html string |
| 7 |
* @var $item_count int Total number of product of wishlist |
| 8 |
*/ |
| 9 |
|
| 10 |
use RadiusTheme\SB\Helpers\Fns; |
| 11 |
|
| 12 |
defined( 'ABSPATH' ) || die( 'Keep Silent' ); |
| 13 |
?> |
| 14 |
<a href="<?php echo esc_url( $page_url ); ?>" class="rtsb-wishlist-counter-wrap"> |
| 15 |
<?php Fns::print_html( $icon_html, true ); ?> |
| 16 |
<span class="rtsb-wishlist-counter"><?php echo esc_html( $item_count ); ?></span> |
| 17 |
</a> |