PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
wp-job-manager
/
templates
<?php /** * Notice when job has been submitted. * * This template can be overridden by copying it to yourtheme/job_manager/job-submitted.php. * * @see https://wpjobmanager.com/document/template-overrides/ * @author Automattic * @package wp-job-manager * @category Template * @version 1.34.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } global $wp_post_types; switch ( $job->post_status ) : case 'publish' : echo '<div class="job-manager-message">' . wp_kses_post( sprintf( // translators: %1$s is the job listing post type name, %2$s is the job listing URL. __( '%1$s listed successfully. To view your listing <a href="%2$s">click here</a>.', 'wp-job-manager' ), esc_html( $wp_post_types['job_listing']->labels->singular_name ), get_permalink( $job->ID ) ) ) . '</div>'; break; case 'pending' : echo '<div class="job-manager-message">' . wp_kses_post( sprintf( // translators: Placeholder %s is the job listing post type name. esc_html__( '%s submitted successfully. Your listing will be visible once approved.', 'wp-job-manager' ), esc_html( $wp_post_types['job_listing']->labels->singular_name ) ) ) . '</div>'; break; default : do_action( 'job_manager_job_submitted_content_' . str_replace( '-', '_', sanitize_title( $job->post_status ) ), $job ); break; endswitch; do_action( 'job_manager_job_submitted_content_after', sanitize_title( $job->post_status ), $job );
[+]
..
[-] pagination.php
[edit]
[-] job-submitted.php
[edit]
[+]
emails
[-] job-application-url.php
[edit]
[-] job-preview.php
[edit]
[-] content-widget-job_listing.php
[edit]
[-] account-signin.php
[edit]
[-] content-single-job_listing-meta.php
[edit]
[-] job-filters.php
[edit]
[-] job-pagination.php
[edit]
[-] content-single-job_listing-company.php
[edit]
[-] content-job_listing.php
[edit]
[-] job-application.php
[edit]
[-] job-filter-job-types.php
[edit]
[-] content-summary-job_listing.php
[edit]
[-] job-application-email.php
[edit]
[-] job-listings-start.php
[edit]
[-] job-dashboard.php
[edit]
[-] content-single-job_listing.php
[edit]
[-] content-widget-no-jobs-found.php
[edit]
[-] job-submit.php
[edit]
[-] job-listings-end.php
[edit]
[+]
form-fields
[-] job-dashboard-login.php
[edit]
[-] content-no-jobs-found.php
[edit]