forked from SlickRemix/feed-them-social
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed-them-social.php
executable file
·36 lines (33 loc) · 1.16 KB
/
feed-them-social.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* Feed Them Social Class (Main Class)
*
* This class is what initiates the Feed Them Social class
*
* Plugin Name: Feed Them Social - Page, Post, Video and Photo Galleries
* Plugin URI: https://feedthemsocial.com/
* Description: Custom feeds for Instagram, Facebook Pages, Album Photos, Videos & Covers, Twitter & YouTube on pages, posts or widgets.
* Version: 4.1.6
* Author: SlickRemix
* Author URI: https://www.slickremix.com/
* Text Domain: feed-them-social
* Domain Path: /languages
* Requires at least: WordPress 5.4
* Tested up to: WordPress 6.2.2
* Stable tag: 4.1.6
* License: GPLv3 or later
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
*
* @version 4.1.6
* @package FeedThemSocial/Core
* @copyright Copyright (c) 2012-2023 SlickRemix
*
* Need Support: https://wordpress.org/support/plugin/feed-them-social
* Paid Extension Support: https://www.slickremix.com/my-account/#tab-support
*/
// Set Plugin's Current Version.
define( 'FTS_CURRENT_VERSION', '4.1.6' );
// Require file for plugin loading.
require_once __DIR__ . '/class-load-plugin.php';
// Feed Them Social Class. Load up the plugin.
new Feed_Them_Social();