# shopbuilder/3.2.4/templates/elementor/archive/title.php

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

- Page: https://pluginprobe.com/plugins/shopbuilder/3.2.4/code/templates/elementor/archive/title.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/3.2.4/raw/templates/elementor/archive/title.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/elementor/archive/title.php#L10-L20`.

```php
<?php
/**
 * Template variables:
 *
 * @var $controllers  array Widgets/Addons Settings
 */

// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'This script cannot be accessed directly.' );
}
?>
<div class="rtsb-archive-title">
	<?php
		$htmltag = ! empty( $controllers['archive_title_html_tag'] ) ? $controllers['archive_title_html_tag'] : 'h2';
		printf( '<%1$s class="archive-title">%2$s</%1$s>', esc_html( $htmltag ), woocommerce_page_title( false ) ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	?>
</div>

```
