PMC Original Series
Friday PM
Maine’s #1 Late Night Show.
Big interviews, live music, local personalities, comedy, and the unpredictable energy of Portland after dark.
Featured Episodes
Start with standout moments from Friday PM.
All Episodes
Browse the Friday PM archive.
▶
Oct 31, 2025
4th Annual Halloween Spooktacular
A Halloween special from Friday PM.
▶
Jul 25, 2025
Friday PM LIVE – Remembering The Icons
A live special remembering legendary performers and cultural moments.
▶
Jul 4, 2025
Friday PM
A special July episode from the Friday PM archive.
▶
Jun 6, 2025
Game Night 1980s Pop Edition
Games, throwbacks, and Friday PM chaos.
▶
May 23, 2025
J. Lauren Sangster
Conversation, performance, and local culture.
▶
May 9, 2025
Farewell to Danny Cashman
A Friday PM tribute episode.
▶
Apr 25, 2025
Jason Lambert
An interview from the Friday PM archive.
▶
Apr 6, 2025
Nate Eldridge
A conversation with Nate Eldridge.
▶
Mar 22, 2025
Portland’s Comedy & Lifestyle Scene
Local comedy, lifestyle, and Portland energy.
▶
Mar 8, 2025
Women’s History Month
A Friday PM episode honoring Women’s History Month.
More on PMC Watch
Keep watching local programming from Portland Media Center.
add_shortcode('pmc_debug_current_series', function () {
ob_start();
echo '
';
$term = get_term_by('slug', 'friday-pm', 'series');
echo "Series term:\n";
print_r($term);
if ($term) {
echo "\n\nSeries term meta:\n";
print_r(get_term_meta($term->term_id));
}
echo "\n\nFriday PM show search:\n";
$shows = new WP_Query([
'post_type' => 'any',
'posts_per_page' => 20,
'post_status' => 'publish',
's' => 'Friday PM',
]);
echo "Found posts: " . $shows->found_posts . "\n\n";
while ($shows->have_posts()) {
$shows->the_post();
echo "Title: " . get_the_title() . "\n";
echo "Post Type: " . get_post_type() . "\n";
echo "Permalink: " . get_permalink() . "\n";
echo "Date: " . get_the_date() . "\n";
echo "Meta keys:\n";
$meta = get_post_meta(get_the_ID());
foreach ($meta as $key => $value) {
echo " - " . $key . " = " . maybe_serialize($value[0]) . "\n";
}
echo "\n-----------------------\n\n";
}
wp_reset_postdata();
echo '';
return ob_get_clean();
});