cliff
12/16/2015 - 5:46 AM

Originally for http://theeventscalendar.com/support/forums/topic/errors-when-importing-ics-files/

<?php

// source: https://gist.github.com/cliffordp/f4f775d360aeca82e6a2
add_filter( 'the_content', 'tec_forum_1036621_show_allowed_mime_types' );
function tec_forum_1036621_show_allowed_mime_types( $content ) {
  if ( current_user_can( 'manage_options' ) ) { // user is an administrator
    var_dump( get_allowed_mime_types() ); // https://developer.wordpress.org/reference/functions/get_allowed_mime_types/
  }
  return $content;
}