Category Action hooks

job_bm_job_submit_data

To handle submitted form data. add_action( ‘job_bm_job_submit_data’, ‘job_bm_job_submit_data_26072019’, 15 ); if ( ! function_exists( ‘job_bm_job_submit_data_26072019’ ) ) { function job_bm_job_submit_data_26072019($post_data){ ?> <pre>After form submit.</pre> <?php } } View post on imgur.com

job_bm_deactivation

You can add your custom function or code that you want to run when you deactivate Job board Manager using this action hook. if( ! function_exists(‘job_bm_deactivation_function’) ) { function job_bm_deactivation_function() { // Your custom Code } } add_action(‘job_bm_deactivation’, ‘job_bm_deactivation_function’, 10);…

job_bm_uninstall

You can add any custom action that will run when you uninstall Job board Manager. if( ! function_exists(‘job_bm_uninstall_function’) ) { function job_bm_uninstall_function() { // Your custom Code } } add_action(‘job_bm_uninstall’, ‘job_bm_uninstall_function’, 10);  

job_bm_install

You can add any custom action using this hook. This action will run when you install Job board Manager Plugin. if( ! function_exists(‘job_bm_install_function’) ) { function job_bm_install_function() { // Your custom Code } } add_action(‘job_bm_install’, ‘job_bm_install_function’, 10);  

job_bm_job_submit_after

add_action( ‘job_bm_job_submit_after’, ‘job_bm_job_submit_after_26072019’, 15 ); if ( ! function_exists( ‘job_bm_job_submit_after_26072019’ ) ) { function job_bm_job_submit_after_26072019(){ ?> <pre>Content after job submission form</pre> <?php } } View post on imgur.com

job_bm_job_submit_form

Content inside job submission from. add_action( ‘job_bm_job_submit_form’, ‘job_bm_job_submit_form_26072019’, 15 ); if ( ! function_exists( ‘job_bm_job_submit_form_26072019’ ) ) { function job_bm_job_submit_form_26072019(){ ?> <pre>Content job submission form</pre> <?php } }   View post on imgur.com Display custom input field add_action( ‘job_bm_job_submit_form’, ‘job_bm_job_submit_form_input_29072019’,…

job_bm_job_submit_before

Content before job submission form. add_action( ‘job_bm_job_submit_before’, ‘job_bm_job_submit_before_26072019’, 15 ); if ( ! function_exists( ‘job_bm_job_submit_before_26072019’ ) ) { function job_bm_job_submit_before_26072019(){ ?> <pre>Content before job submission form</pre> <?php } }     View post on imgur.com

job_bm_after_single_job

Action hook after a single job wrapper add_action( ‘job_bm_after_single_job’, ‘job_bm_after_single_job_26072019’, 15 ); if ( ! function_exists( ‘job_bm_after_single_job_26072019’ ) ) { function job_bm_after_single_job_26072019(){ ?> <pre>Content after single job</pre> <?php } }   View post on imgur.com

job_bm_single_job_main

Action hook for the main content on the single job page. add_action( ‘job_bm_single_job_main’, ‘job_bm_single_job_main_26072019’, 15 ); if ( ! function_exists( ‘job_bm_single_job_main_26072019’ ) ) { function job_bm_single_job_main_26072019(){ ?> <pre>Content main single job</pre> <?php } }     View post on imgur.com…

job_bm_before_single_job

Action hook before a single job wrapper add_action( ‘job_bm_before_single_job’, ‘job_bm_before_single_job’, 5 ); if ( ! function_exists( ‘job_bm_before_single_job’ ) ) { function job_bm_before_single_job(){ ?> <pre>Content before single job</pre> <?php } } View post on imgur.com