/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
wp-job-manager
/
templates
/
Upload File
HOME
<?php /** * Notice when no jobs were found in `[jobs]` shortcode. * * This template can be overridden by copying it to yourtheme/job_manager/content-no-jobs-found.php. * * @see https://wpjobmanager.com/document/template-overrides/ * @author Automattic * @package wp-job-manager * @category Template * @since 1.0.0 * @version 1.31.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } ?> <?php if ( defined( 'DOING_AJAX' ) ) : ?> <li class="no_job_listings_found"><?php esc_html_e( 'There are no listings matching your search.', 'wp-job-manager' ); ?></li> <?php else : ?> <p class="no_job_listings_found"><?php esc_html_e( 'There are currently no vacancies.', 'wp-job-manager' ); ?></p> <?php endif; ?>