Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
thepassage.overlookedtracks.com
/
wp-content9
/
plugins
/
m-chart
/
components
/
templates
/
Editing: iframe.php
<?php // Make sure we isntantiate the library so any library specific filters/setup get run $library = $this->get_post_meta( $post->ID, 'library' ); $this->library( $library ); ?> <!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title><?php echo get_the_title( $post->ID ); ?></title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <?php wp_print_scripts( apply_filters( 'm_chart_iframe_scripts', $scripts, $post->ID ) ); ?> </head> <!-- overflow: hidden; prevents the iframe from scrolling --> <body style="overflow: hidden;"> <?php echo $this->get_chart( $post->ID, $_GET ); ?> </body> </html>
Save
Cancel