| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: Newpost Catch |
| 4 |
Plugin URI: http://www.imamura.biz/blog/newpost-catch/ |
| 5 |
Description: Thumbnails in new articles setting widget. |
| 6 |
Version: 1.3.23 |
| 7 |
Author: Tetsuya Imamura |
| 8 |
Text Domain: newpost-catch |
| 9 |
Author URI: http://www.imamura.biz/blog/ |
| 10 |
License: GPLv2 or later |
| 11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 12 |
*/ |
| 13 |
|
| 14 |
// Include |
| 15 |
include "class.php"; |
| 16 |
|
| 17 |
// Hook |
| 18 |
add_action( 'widgets_init', function(){ register_widget( 'NewpostCatch' ); }); |
| 19 |
|
| 20 |
// Instance |
| 21 |
new NewpostCatch_SC(); |
| 22 |
|
| 23 |
/* Copyright Tetsuya Imamura (@s56bouya) |
| 24 |
|
| 25 |
This program is free software; you can redistribute it and/or modify |
| 26 |
it under the terms of the GNU General Public License, version 2, as |
| 27 |
published by the Free Software Foundation. |
| 28 |
|
| 29 |
This program is distributed in the hope that it will be useful, |
| 30 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 31 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 32 |
GNU General Public License for more details. |
| 33 |
|
| 34 |
You should have received a copy of the GNU General Public License |
| 35 |
along with this program; if not, write to the Free Software |
| 36 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 37 |
*/ |
| 38 |
|