HEX
Server: nginx/1.24.0
System: Linux webserver 6.8.0-87-generic #88-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 09:28:41 UTC 2025 x86_64
User: wpuser (1002)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /opt/wpsites/datacloudnow.com/wp-content/plugins/salient-core/includes/vc_templates/page_link.php
<?php 

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

extract(shortcode_atts(array(
  "title" => "", 
  "link_url" => "#", 
  "link_new_tab" => 'false'), $atts));

$new_tab_markup = ($link_new_tab === 'true') ? 'target="_blank"' : null;

echo '<li><a '.$new_tab_markup.' href="'.esc_url($link_url).'">'.wp_kses_post($title).'</a></li>';

?>