PluginProbe
Nelio Content – Editorial Calendar & Social Media Auto-Posting / 4.3.7
Nelio Content – Editorial Calendar & Social Media Auto-Posting v4.3.7
4.4.1 4.4.0 4.3.9 4.3.8 4.3.7 4.3.6 4.3.5 4.3.4 trunk 2.3.3 2.3.4 2.3.5 2.3.6 2.4.0 2.4.1 2.4.2 2.5.0 2.5.1 2.5.2 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 All 69 releases
nelio-content / nelio-content.php

nelio-content.php in Nelio Content – Editorial Calendar & Social Media Auto-Posting 4.3.7, at nelio-content.php

39 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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.3.7
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