| 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
/**
* Columns shortcode
* Usage: [column width="eight" place="" custom_class=""] [/column]
*/
function workscout_column($atts, $content = null) {
extract( shortcode_atts( array(
'width' => 'eight',
'place' => '',
'custom_class' => ''
), $atts ) );
switch ( $width ) {
case "1/3" : $w = "column one-third"; break;
case "one-third" : $w = "column one-third"; break;
case "2/3" :
$w = "column two-thirds";
break;
case "one" : $w = "one columns"; break;
case "two" : $w = "two columns"; break;
case "three" : $w = "three columns"; break;
case "four" : $w = "four columns"; break;
case "five" : $w = "five columns"; break;
case "six" : $w = "six columns"; break;
case "seven" : $w = "seven columns"; break;
case "eight" : $w = "eight columns"; break;
case "nine" : $w = "nine columns"; break;
case "ten" : $w = "ten columns"; break;
case "eleven" : $w = "eleven columns"; break;
case "twelve" : $w = "twelve columns"; break;
case "thirteen" : $w = "thirteen columns"; break;
case "fourteen" : $w = "fourteen columns"; break;
case "fifteen" : $w = "fifteen columns"; break;
case "sixteen" : $w = "sixteen columns"; break;
default :
$w = 'columns eight';
}
switch ( $place ) {
case "last" :
$p = "omega";
break;
case "center" :
$p = "alpha omega";
break;
case "none" :
$p = " ";
break;
case "first" :
$p = "alpha";
break;
default :
$p = ' ';
}
$column ='<div class="'.$w.' '.$custom_class.' '.$p.'">'.do_shortcode( $content ).'</div>';
if($place=='last') {
$column .= '<br class="clear" />';
}
return $column;
}
?>