-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-reading-progress-bar.php
38 lines (35 loc) · 1.37 KB
/
simple-reading-progress-bar.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
37
38
<?php
/**
* Plugin Name: Simple Reading Progress Bar
* Description: A simple and easy to custom progress bar at the top of your posts.
* Text Domain: simple-reading-progress-bar
* Plugin URI: https://github.com/oscarssanchez/simple-reading-progress-bar
* Version: 1.1
* Author: Oscar Sańchez
* Author URI: http://oscarssanchez.com
* License: GPL2
*
* Copyright (c) 2018 Oscar Sánchez (https://oscarssanchez.com/)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 or, at
* your discretion, any later version, as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @package SimpleReadingProgressBar
*/
namespace SimpleReadingProgressBar;
/** Prevent direct access to the file */
defined( 'ABSPATH' ) or die( 'Access denied' );
require_once dirname( __FILE__ ) . '/php/class-plugin.php';
$plugin = Plugin::get_instance();
$plugin->init();