<?php
$job_types = get_terms( 'job_salary', array( 'hide_empty' => '0' ) );
if ($job_types && sizeof($job_types) > 0) {
foreach ($job_types as $type) {
?>
<p><input type="checkbox" name="<?php echo $type->slug; ?>" id="<?php echo $type->slug; ?>" <?php
if (isset($_GET[$type->slug]) || !isset($_GET['action'])) echo 'checked="checked"';
?> value="show" /> <label for="<?php echo $type->slug; ?>"><?php echo $type->name; ?></label></p>
<?php
}
}
?>
There are currently 1 users browsing this thread. (0 members and 1 guests)