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);