Support may delay or unavailable from 30-03-2025 to 10-04-2025 due to Eid Holyday break.

job_bm_create_pages

You can add own input for creating pages and content on welcome page after activating the plugin.

function job_bm_create_pages_29072019($pages){
  
  $pages_new = array(	
          array(
            'id'=>'job_bm_archive_page_id_new',		
            'title'=>'Job Page New',
            'shortcode'=>'[shortcode]',	// Shortcode or Content						
            ),
        );

  $pages = array_merge($pages,$pages_new);
  return $pages;

  }
  
add_filter('job_bm_create_pages','job_bm_create_pages_29072019');