PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
wyz-toolkit
/
job-manager
/
templates
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $wp_post_types; switch ( $job->post_status ) : case 'publish' : printf( __( '%s listed successfully.', 'wp-job-manager' ), $wp_post_types['job_listing']->labels->singular_name, get_permalink( $job->ID ) ); break; case 'pending' : printf( __( '%s submitted successfully. Your listing will be visible once approved.', 'wp-job-manager' ), $wp_post_types['job_listing']->labels->singular_name, get_permalink( $job->ID ) ); 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 );
[+]
..
[-] job-application.php
[edit]
[-] content-job_listing.php
[edit]
[-] content-single-job_listing-meta.php
[edit]
[-] content-single-job_listing-company.php
[edit]
[-] job-submitted.php
[edit]
[-] content-summary-job_listing.php
[edit]
[-] job-preview.php
[edit]