| 1 |
<?php |
| 2 |
/** |
| 3 |
* The plugin bootstrap file. |
| 4 |
* |
| 5 |
* Plugin Name: Nelio Content - Editorial Calendar & Social Media Auto-Posting |
| 6 |
* Plugin URI: https://neliosoftware.com/content/ |
| 7 |
* Description: Auto-post, schedule, and share your posts on Twitter, Facebook, LinkedIn, Instagram, and other social networks. Save time with useful automations. |
| 8 |
* Version: 4.4.1 |
| 9 |
* |
| 10 |
* Author: Nelio Software |
| 11 |
* Author URI: https://neliosoftware.com |
| 12 |
* License: GPL-2.0+ |
| 13 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 14 |
* |
| 15 |
* Requires at least: 6.7 |
| 16 |
* Requires PHP: 7.4 |
| 17 |
* |
| 18 |
* Text Domain: nelio-content |
| 19 |
*/ |
| 20 |
|
| 21 |
defined( 'ABSPATH' ) || exit; |
| 22 |
|
| 23 |
define( 'NELIO_CONTENT', true ); |
| 24 |
require untrailingslashit( __DIR__ ) . '/class-nelio-content.php'; |
| 25 |
|
| 26 |
/** |
| 27 |
* Returns the unique instance of Nelio Content’s main class. |
| 28 |
* |
| 29 |
* @return Nelio_Content unique instance of Nelio Content’s main class. |
| 30 |
* |
| 31 |
* Since @2.0.0 |
| 32 |
*/ |
| 33 |
function nelio_content() { |
| 34 |
return Nelio_Content::instance(); |
| 35 |
} |
| 36 |
|
| 37 |
// Start plugin. |
| 38 |
nelio_content(); |
| 39 |
|