| @@ -8,9 +8,9 @@ | ||
| 8 | 8 | * |
| 9 | 9 | * Plugin Name: Code Embed |
| 10 | 10 | * Plugin URI: https://wordpress.org/plugins/simple-embed-code/ |
| 11 | 11 | * Description: Code Embed provides a very easy and efficient way to embed code (JavaScript and HTML) in your posts and pages. |
| 12 | - * Version: 2.5.1 | |
| 12 | + * Version: 2.4 | |
| 13 | 13 | * Requires at least: 4.6 |
| 14 | 14 | * Requires PHP: 7.4 |
| 15 | 15 | * Author: David Artiss |
| 16 | 16 | * Author URI: https://artiss.blog |
| @@ -25,9 +25,9 @@ | ||
| 25 | 25 | * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without |
| 26 | 26 | * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 27 | 27 | */ |
| 28 | 28 | |
| 29 | -define( 'CODE_EMBED_VERSION', '2.5.1' ); | |
| 29 | +define( 'CODE_EMBED_VERSION', '2.4' ); | |
| 30 | 30 | |
| 31 | 31 | // Define global to hold the plugin base file name. |
| 32 | 32 | |
| 33 | 33 | if ( ! defined( 'CODE_EMBED_PLUGIN_BASE' ) ) { |
| @@ -47,5 +47,5 @@ | ||
| 47 | 47 | require_once $functions_dir . 'shared.php'; // Functions shared across all my plugins. |
| 48 | 48 | |
| 49 | 49 | require_once $functions_dir . 'screens.php'; // Add settings and tools screens. |
| 50 | 50 | |
| 51 | -require_once $functions_dir . 'secure.php'; // Security functionality. | |
| 51 | +require_once $functions_dir . 'meta-box.php'; // Suppress meta-boxes. | |