# shopbuilder/3.2.4/templates/wishlist/counter.php

ShopBuilder – WooCommerce Builder For Elementor, version 3.2.4. 17 lines.

- Page: https://pluginprobe.com/plugins/shopbuilder/3.2.4/code/templates/wishlist/counter.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/3.2.4/raw/templates/wishlist/counter.php
- Modified: 2026-06-16T09:34:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shopbuilder/3.2.4/code/templates/wishlist/counter.php#L10-L20`.

```php
<?php
/**
 * Go to wishlist Page
 *
 * @var $page_url                    string Wishlist page url
 * @var $icon_html                 string
 * @var $item_count                  int Total number of product of wishlist
 */

use RadiusTheme\SB\Helpers\Fns;

defined( 'ABSPATH' ) || die( 'Keep Silent' );
?>
<a href="<?php echo esc_url( $page_url ); ?>" class="rtsb-wishlist-counter-wrap">
	<?php Fns::print_html( $icon_html, true ); ?>
	<span class="rtsb-wishlist-counter"><?php echo esc_html( $item_count ); ?></span>
</a>
```
