Please note that we will never request payment or bank account information at any stage of the recruitment process. As we continue to grow our teams, we urge you to be cautious of fraudulent job postings or recruitment activities that misuse our company name and information. Please protect your personal information during any recruitment process….
To apply for this job please visit jobicy.com.
// Never show in admin
if ( is_admin() ) return false;
// ❌ Hide on single job pages
if ( is_singular('job_listing') ) return false;
// ✅ Show only on single blog posts
if ( is_singular('post') ) return true;
// Hide everywhere else
return false;
	
