/**
     * widget function.
     *
     * @see WP_Widget
     * @access public
     * @param array $args
     * @param array $instance
     * @return void
     */
    function widget($args, $instance)
    {
        if ($this->get_cached_widget($args)) {
            return;
        }
        ob_start();
        extract($args);
        $title = apply_filters('widget_title', isset($instance['title']) ? $instance['title'] : '', $instance, $this->id_base);
        echo $before_widget;
        ?>

		<?php 
        if ($title) {
            echo $before_title . $title . $after_title;
        }
        ?>

		<div class="job-location">
			<i class="icon-location"></i>
			<?php 
        the_job_location(true);
        ?>
		</div>

		<?php 
        echo $after_widget;
        $content = apply_filters('jobify_widget_job_location', ob_get_clean(), $instance, $args);
        echo $content;
        $this->cache_widget($args, $content);
    }
<ul class="meta">
	<?php 
do_action('single_job_listing_meta_start');
?>

	<li class="job-type <?php 
echo get_the_job_type() ? sanitize_title(get_the_job_type()->slug) : '';
?>
" itemprop="employmentType"><?php 
the_job_type();
?>
</li>

	<li class="location" itemprop="jobLocation"><?php 
the_job_location();
?>
</li>

	<li class="date-posted" itemprop="datePosted"><date><?php 
printf(esc_html__('Posted %s ago', 'listable'), human_time_diff(get_post_time('U'), current_time('timestamp')));
?>
</date></li>

	<?php 
if (is_position_filled()) {
    ?>
		<li class="position-filled"><?php 
    esc_html_e('This position has been filled', 'listable');
    ?>
</li>
		<div class="mobile-holder">
			<div class="hourly-rate">
				<?php 
if ($rate[0]) {
    ?>
				<?php 
    echo $currency;
    echo $rate[0];
    ?>
				<?php 
}
?>
			</div>
			<div class="location">
				<i class="icon-map-marker"></i> <?php 
the_job_location(false);
?>
			</div>
			<ul class="meta">
				<li class="job-type <?php 
echo get_the_job_type() ? sanitize_title(get_the_job_type()->slug) : '';
?>
"><?php 
the_job_type();
?>
</li>
				<li class="date"><date><?php 
echo human_time_diff(get_post_time('U'), current_time('timestamp')) . ' ' . __('ago', 'babysitter');
?>
</date></li>
			</ul>
 public function get_the_location($flat = false)
 {
     if (!get_the_job_location()) {
         return;
     }
     if ($flat) {
         $flat = '<div class="job_listing-location" itemprop="address" Itemscope itemtype="http://schema.org/PostalAddress">';
         $flat .= get_the_job_location(false);
         $flat .= '</div>';
         return $flat;
     }
     ob_start();
     ?>
     <div class="job_listing-location" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
         <?php 
     the_job_location();
     ?>
     </div>
 <?php 
     $location = ob_get_clean();
     return $location;
 }
 /**
  * custom_columns function.
  *
  * @access public
  * @param mixed $column
  * @return void
  */
 public function custom_columns($column)
 {
     global $post, $job_manager;
     switch ($column) {
         case "job_listing_type":
             $type = get_the_job_type($post);
             if ($type) {
                 echo '<span class="job-type ' . $type->slug . '">' . $type->name . '</span>';
             }
             break;
         case "job_position":
             echo '<div class="job_position">';
             echo '<a href="' . admin_url('post.php?post=' . $post->ID . '&action=edit') . '" class="tips job_title" data-tip="' . sprintf(__('Job ID: %d', 'wp-job-manager'), $post->ID) . '">' . $post->post_title . '</a>';
             echo '<div class="location">';
             if (get_the_company_website()) {
                 the_company_name('<span class="tips" data-tip="' . esc_attr(get_the_company_tagline()) . '"><a href="' . get_the_company_website() . '">', '</a></span> &ndash; ');
             } else {
                 the_company_name('<span class="tips" data-tip="' . esc_attr(get_the_company_tagline()) . '">', '</span> &ndash; ');
             }
             the_job_location($post);
             echo '</div>';
             the_company_logo();
             echo '</div>';
             break;
         case "job_listing_category":
             if (!($terms = get_the_term_list($post->ID, $column, '', ', ', ''))) {
                 echo '<span class="na">&ndash;</span>';
             } else {
                 echo $terms;
             }
             break;
         case "filled":
             if (is_position_filled($post)) {
                 echo '&#10004;';
             } else {
                 echo '&ndash;';
             }
             break;
         case "featured_job":
             if (is_position_featured($post)) {
                 echo '&#10004;';
             } else {
                 echo '&ndash;';
             }
             break;
         case "job_posted":
             echo '<strong>' . date_i18n(__('M j, Y', 'wp-job-manager'), strtotime($post->post_date)) . '</strong><span>';
             echo (empty($post->post_author) ? __('by a guest', 'wp-job-manager') : sprintf(__('by %s', 'wp-job-manager'), '<a href="' . get_edit_user_link($post->post_author) . '">' . get_the_author() . '</a>')) . '</span>';
             break;
         case "job_expires":
             if ($post->_job_expires) {
                 echo '<strong>' . date_i18n(__('M j, Y', 'wp-job-manager'), strtotime($post->_job_expires)) . '</strong>';
             } else {
                 echo '&ndash;';
             }
             break;
         case "job_status":
             echo get_the_job_status($post);
             break;
         case "job_actions":
             echo '<div class="actions">';
             $admin_actions = array();
             if ($post->post_status == 'pending') {
                 $admin_actions['approve'] = array('action' => 'approve', 'name' => __('Approve', 'wp-job-manager'), 'url' => wp_nonce_url(add_query_arg('approve_job', $post->ID), 'approve_job'));
             }
             if ($post->post_status !== 'trash') {
                 $admin_actions['view'] = array('action' => 'view', 'name' => __('View', 'wp-job-manager'), 'url' => get_permalink($post->ID));
                 $admin_actions['edit'] = array('action' => 'edit', 'name' => __('Edit', 'wp-job-manager'), 'url' => get_edit_post_link($post->ID));
                 $admin_actions['delete'] = array('action' => 'delete', 'name' => __('Delete', 'wp-job-manager'), 'url' => get_delete_post_link($post->ID));
             }
             $admin_actions = apply_filters('job_manager_admin_actions', $admin_actions, $post);
             foreach ($admin_actions as $action) {
                 printf('<a class="button tips icon-%s" href="%s" data-tip="%s">%s</a>', sanitize_title($action['name']), esc_url($action['url']), esc_attr($action['name']), esc_attr($action['name']));
             }
             echo '</div>';
             break;
     }
 }
    /**
     * Listing Location
     *
     * @since Listify 1.0.0
     *
     * @return void
     */
    public function the_location()
    {
        if (!get_the_job_location()) {
            return;
        }
        ?>
		<div class="job_listing-location">
			<?php 
        the_job_location();
        ?>
		</div>
	<?php 
    }