%s', __( 'Automatic YouTube Gallery', 'automatic-youtube-gallery' ) ); } } /** * Prints the footer code needed for the "Automatic YouTube Gallery" TinyMCE button. * * @since 1.0.0 */ public function admin_footer() { global $pagenow; // Only run in post/page creation and edit screens if ( in_array( $pagenow, array( 'post.php', 'page.php', 'post-new.php', 'post-edit.php' ) ) ) { $fields = ayg_get_editor_fields(); require_once AYG_DIR . 'admin/templates/shortcode-builder.php'; } } }