PluginProbe
Substack Importer / trunk
Substack Importer vtrunk
trunk 0.1.0 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.2.0
← All changes | substack-importer.php +4 -4 1.0.7trunk View file →
@@ -1,13 +1,14 @@
1 1 <?php
2 2 /**
3 3 * Plugin Name: Substack Importer
4 - * Plugin URI: https://github.com/Automattic/substack-importer
4 + * Plugin URI: https://github.com/wordpress/substack-importer
5 5 * Description: A plugin that lets you import content from Substack to your WordPress site
6 6 * Author: wordpressdotorg
7 7 * Text Domain: substack-importer
8 - * Version: 1.0.7
9 - * requires PHP: 5.6
8 + * Version: 1.2.0
9 + * Requires PHP: 7.4
10 + * Tested up to: 6.9
10 11 *
11 12 * @package SubstackImporter
12 13 */
13 14
@@ -56,7 +57,6 @@
56 57 if ( isset( $_GET['import'] ) && 'substack' === $_GET['import'] ) {
57 58 wp_enqueue_script( 'substack-index-js', plugins_url( '/js/index.js', __FILE__ ) );
58 59 wp_enqueue_style( 'substack-index-css', plugins_url( '/css/index.css', __FILE__ ) );
59 60 }
60 -
61 61 }
62 62 add_action( 'admin_init', 'substack_importer_init' );