PluginProbe
Newpost Catch / trunk
Newpost Catch vtrunk
1.3.24 1.0.0 1.0.1 1.0.2 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.2.2 1.2.6 1.2.7 1.3.1 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 1.3.17 1.3.18 1.3.19 1.3.2 All 31 releases
newpost-catch / newpost-catch.php

newpost-catch.php in Newpost Catch trunk, at newpost-catch.php

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