Continuing and Professional Education at SMU
Are you ready to up your game, sharpen your skills, and expand your possibilities? SMU CAPE offers engaging learning opportunities for all types of learners. Short courses, certificates, specializations and customized programs taught by world-class instructors will give you the knowledge and skills to transform your world!
CAPE is a division of Southern Methodist University, the nationally ranked, globally recognized comprehensive research university in metropolitan Dallas.
Programs
Our noncredit programs enhance your life and help you reach your career goals. Take advantage of flexible class schedules and online options to maximize your learning. Find a program or course that fits your interests and needs.
Professional Certificates
Essential skills employers seek today.
Corporate Solutions
Training and partnerships for your organization.
Short Courses
Quick classes with big impact.
Specializations
Gain skills that employers want now.
Entrepreneurship Course Bundle
Deepen your entrepreneurial acumen through a curated selection of courses designed to equip you with the practical skills and strategic insight needed to develop, grow, and confidently lead your business.
TWC Approved Eligible Training Provider (ETP)
Select certificate programs are now eligible to receive funds through the Workforce Innovation and Opportunity Act (WIOA).
Areas of Study
ENHANCE YOUR CAREER WITH NEW SKILLS
Stack Your Skills
BUILD A RESUME THAT STACKS UP FROM SHORT COURSES TO CERTIFICATES
Showcase Your Achievements
DIGITAL BADGES
Partnering with faculty and industry professionals, SMU CAPE offers a wide range of noncredit programs to help students advance in their careers or transition successfully to new ones. The SMU CAPE catalog includes certificates, bootcamps, workshops, short courses, and other offerings in on-campus and online formats.
Representing your skills as a badge gives you a way to share your abilities online in a way that is simple, trusted and can be easily verified in real time. Badges provide employers and peers concrete evidence of what you had to do to earn your certificate and what you’re now capable of.
World-class Education
Our continuing and professional programs and courses are rooted in the world-class reputation of SMU.
Industry Ties
Professional and continuing education students tap into SMU’s deep ties to industries based in Dallas’ thriving economy, throughout the U.S. and internationally.
Expert Instructors
Distinguished faculty and experienced practitioners guide you through the learning process, facilitating meaningful and interactive experiences either on campus or online.
Prepare for Success
Students with an SMU education are well prepared to impress, earn respect and succeed in their careers.
Unlock Your Potential with SMU CAPE!
With over 120 new programs and courses, 26 certificates, 100+ exceptional instructors, and a community of 1500+ dedicated students, we’re more than just education—we’re part of your journey to success.
`;
const htmlShowDescription = desc => {
let trimmedString = desc.substr(0, csWordpress.numOfDescChars);
trimmedString = trimmedString.substr(0, Math.min(trimmedString.length, trimmedString.lastIndexOf(" ")));
return (csWordpress.bShowDescription)
? `
${trimmedString} ...
`
: ``
};
// Without Feature Image
const htmlArticleBlock = (htmlArticle, theItem) => {
let htmlArticleDiv = document.createElement("div");
htmlArticleDiv.className = "mb-3";
htmlArticleDiv.innerHTML = `
`;
htmlArticle.append(htmlArticleDiv);
csWordpress.bShowDate && htmlArticleDiv.insertAdjacentHTML('beforeend', htmlShowDate(theItem.date));
csWordpress.bShowDescription && htmlArticleDiv.insertAdjacentHTML('beforeend', htmlShowDescription(theItem.excerpt.rendered));
};
// With Feature Image
const htmlArticleFeatureTeaseArt = (htmlArticle, theItem, mediaItem) => {
let imageSrc = mediaItem.source_url;
let imageAlt = mediaItem.alt_text;
let htmlTeaseArt = document.createElement("div");
htmlTeaseArt.className = "tease-art";
let htmlTeaseFigure = document.createElement("div");
htmlTeaseFigure.className = "tease-figure";
htmlTeaseFigure.innerHTML = `

`;
let htmlTeaseArtLink = document.createElement("a");
htmlTeaseArtLink.className = "tease-image-link";
htmlTeaseArtLink.href = theItem.link;
htmlTeaseArtLink.title = theItem.title.rendered;
htmlTeaseArtLink.append(htmlTeaseFigure);
htmlTeaseArt.append(htmlTeaseArtLink);
htmlArticle.append(htmlTeaseArt);
};
const htmlArticleFeatureTeaseContentTitle = (htmlArticle, theItem) => {
let htmlTeaseContentTitles = document.createElement("div");
htmlTeaseContentTitles.innerHTML = `
`;
htmlArticle.append(htmlTeaseContentTitles);
};
const htmlArticleFeatureTeaseContent = (htmlArticle, theItem) => {
let htmlTeaseContent = document.createElement("div");
htmlTeaseContent.className = "tease-content";
if (csWordpress.featureImageOption) {
htmlArticleFeatureTeaseContentTitle(htmlTeaseContent, theItem);
};
let htmlTeaseDescription = document.createElement("div");
htmlTeaseDescription.className = "tease-description";
csWordpress.bShowDate && htmlTeaseContent.insertAdjacentHTML('beforeend', htmlShowDate(theItem.date));
csWordpress.bShowDescription && htmlTeaseContent.insertAdjacentHTML('beforeend', htmlShowDescription(theItem.excerpt.rendered));
htmlArticle.append(htmlTeaseContent);
};
const htmlArticleFeatureImageBlock = (htmlArticle, theItem) => {
let mediaItem = (theItem?._embedded['wp:featuredmedia'] ?? [])['0'];
let htmlImageArticle = document.createElement("article");
htmlImageArticle.setAttribute("role", "group");
htmlImageArticle.setAttribute("aria-label", "blog article");
// display this div section only if a featured image exists in the RSS feed
(mediaItem == null) || htmlArticleFeatureTeaseArt(htmlArticle, theItem, mediaItem);
htmlArticleFeatureTeaseContent(htmlArticle, theItem);
};
fetch(csWordpress.url)
.then((response) => response.json())
.then((data) => {
data.map((item) => {
let htmlArticle = document.createElement("article");
htmlArticle.setAttribute("role", "group");
htmlArticle.setAttribute("aria-label", "blog article");
/* if user has selected the "Basic list with featured image",
or "Basic grid with featured image" display option */
(csWordpress.featureImageOption)
? htmlArticleFeatureImageBlock(htmlArticle, item)
: htmlArticleBlock(htmlArticle, item);
let htmlArticleli = document.createElement("li");
htmlArticleli.className = "tease tease--news";
htmlArticleli.append(htmlArticle);
csWordpress.id.append(htmlArticleli);
});
})
.catch((err) => {
console.log(err);
});
});