-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-post-message.php
More file actions
33 lines (31 loc) · 1022 Bytes
/
single-post-message.php
File metadata and controls
33 lines (31 loc) · 1022 Bytes
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
<?php
/**
* Single Post Message
*
* Easily add short messages and announcements above posts. Displays in the RSS feed and on the blog.
*
* @package Single_Post_Message
* @author Tom McFarlin <tom@tommcfarlin.com>
* @license GPL-2.0+
* @link http://tommcfarlin.com
* @copyright 2012 - 2015 Tom McFarlin
*
* @wordpress-plugin
* Plugin Name: Single Post Message
* Plugin URI: http://tommcfarlin.com/single-post-message
* Description: Easily add short messages and announcements above posts. Displays in the RSS feed and on the blog.
* Version: 2.4.0
* Author: Tom McFarlin
* Author URI: http://tommcfarlin.com
* Author Email: tom@tommcfarlin.com
* Text Domain: single-post-message
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /lang
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
} // end if
require_once( plugin_dir_path( __FILE__ ) . 'class-single-post-message.php' );
Single_Post_Message::get_instance();