← Friday PM
PMC Watch

Friday PM

4th Annual Halloween Spooktacular

0:00 / 0:00

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.

Late Night Talk Show Channel 5 PMC Watch

Start with standout moments from Friday PM.

All Episodes

Browse the Friday PM archive.

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(); });