| Server IP : 77.68.64.20 / Your IP : 216.73.216.30 Web Server : Apache System : Linux hp3-wp-1011484.hostingp3.local 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64 User : csh2668037 ( 2112352) PHP Version : 7.4.33 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/domains/vol3/223/3261223/user/htdocs/wp-content/plugins/workscout-core/shortcodes/ |
Upload File : |
<?php
/**
* Headline shortcode
* Usage: [iconbox title="Service Title" url="#" icon="37"] test [/headline]
*/
function workscout_iconbox( $atts, $content ) {
extract(shortcode_atts(array(
'title' => 'Search For Jobs',
'url' => '',
'icon' => 'ln ln-icon-Search-onCloud',
'type' => 'rounded', // 'standard'
'from_vs' => 'no',
), $atts));
/*<div class="icon-box rounded alt">
<i class="ln ln-icon-Search-onCloud"></i>
<h4>Search For Jobs</h4>
<p>Pellentesque habitant morbi tristique senectus netus ante et malesuada fames ac turpis egestas maximus neque.</p>
</div>*/
if( $type == 'rounded' ){
$output = '<div class="icon-box rounded alt">';
} else {
$output = '<div class="icon-box alt">';
}
if($from_vs === "yes") {
if($url) {
$link = vc_build_link( $url );
$a_href = $link['url'];
$a_title = $link['title'];
$a_target = $link['target'];
$output .= '<a href="'.esc_url( $a_href ).'" title="'.esc_attr( $a_title ).'" target="'.esc_attr($a_target).'">';
}
$output .= '<i class="'.esc_attr($icon).'"></i>';
if($url) {
$output .= '</a>';
}
} else {
if($url) {
$output .= '<a href="'.$url.'">';
}
$output .= '<i class="'.esc_attr($icon).'"></i>';
if($url) {
$output .= '</a>';
}
}
if($url) {
if($from_vs === 'yes') {
$link = vc_build_link( $url );
$a_href = $link['url'];
$a_title = $link['title'];
$a_target = $link['target'];
$output .= '<a href="'.esc_url( $a_href ).'" title="'.esc_attr( $a_title ).'" target="'.esc_attr($a_target).'"><h4>'.$title.'</h4></a>';
} else {
$output .= '<a href="'.$url.'"><h4>'.$title.'</h4></a>';
}
} else {
$output .= '<h4>'.$title.'</h4>';
}
$output .= '<p>'.do_shortcode( $content ).'</p>';
$output .= '</div>';
return $output;
}
add_shortcode('iconbox', 'workscout_iconbox');
?>