HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/jennysmasks.com/wp-content/themes/boldgrid-westview/templates/call-to-action.php
<?php
/**
 * Call To Action Template
 *
 * This is the call to action template used in Prime themes.
 *
 * @package Prime
 */

// Get the theme configs.
$widgets = $configs['widget']['widget_instances'];
// Display the call to action widget area if configs are set.
?>
<div class="bgtfw-cta <?php echo $configs['template']['pages']['global']['call-to-action']; ?>">
	<?php
		$location = 'boldgrid-widget-1';
	foreach ( $widgets as $widget => $widget_configs ) {
		if ( isset( $widget_configs[0]['title'] ) && 'Call To Action' === $widget_configs[0]['title'] ) {
			$location = $widget;
			break;
		}
	}
		dynamic_sidebar( $location );
	?>
</div>