Through education, people can transform their lives and reach career goals. learndirect has been empowering individuals to reach the height of their potential for many years, with a forward-thinking digital approach.As the UK’s leading online learning provider, we have helped millions of learners gain qualifications that have led to exciting careers. Our work is to…
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;

