Company Description Welcome to the good side of tech 👋 You might have heard about us, but with a different name: DocPlanner, Doctoralia, Znanylekarz… It all started 10 years ago when we asked ourselves: is anyone in healthcare thinking about patients? We jumped in and we empowered patients by giving them access to leave and…
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;
	
