Newpost Catch - Version 1.0.1

Version Description

  • Has been updated so that it does not include the "Stick this post to the front page".
  • A change since the previous version.
Download this release

Release Info

Developer s56bouya
Plugin Icon wp plugin Newpost Catch
Version 1.0.1
Comparing to
See all releases

Code changes from version 1.0.0 to 1.0.1

class.php CHANGED
@@ -55,7 +55,8 @@ if ( !class_exists('NewpostCatch') ) {
55
  echo $before_widget;
56
 
57
  if ( $title ) echo $before_title . $title . $after_title;
58
- query_posts($query_string . "&showposts=" . $number );
 
59
  ?>
60
  <ul id="npcatch" >
61
  <?php if( have_posts() ) : ?>
55
  echo $before_widget;
56
 
57
  if ( $title ) echo $before_title . $title . $after_title;
58
+ query_posts($query_string . "&showposts=" . $number . "&ignore_sticky_posts=1" );
59
+
60
  ?>
61
  <ul id="npcatch" >
62
  <?php if( have_posts() ) : ?>
languages/newpost-catch-ja.mo DELETED
Binary file
languages/newpost-catch-ja.po DELETED
@@ -1,37 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Newpost Catch\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-19 +900\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Tetsuya Imamura <plugins@imamura.biz>\n"
8
- "Language-Team: Tetsuya Imamura <wpdev@imamura.biz>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Japanese\n"
13
- "X-Poedit-Country: JAPAN\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
-
16
- #: newpost-catch/class.php:112
17
- msgid "Title:"
18
- msgstr "タイトル:"
19
-
20
- msgid "Thumbnail Size"
21
- msgstr "サムネイルのサイズ"
22
-
23
- msgid "Width:"
24
- msgstr "幅:"
25
-
26
- msgid "Height:"
27
- msgstr "高さ:"
28
-
29
- msgid "Showposts:"
30
- msgstr "投稿件数"
31
-
32
- msgid "Posts"
33
- msgstr "件"
34
-
35
- msgid "Display date"
36
- msgstr "投稿日(チェックすると表示)"
37
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/newpost-catch.pot DELETED
@@ -1,41 +0,0 @@
1
- # Copyright 2012 Newpost Catch
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: Newpost Catch\n"
5
- "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2012-03-19 +900\n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: Tetsuya Imamura <wpdev@imamura.biz>\n"
9
- "Language-Team: Tetsuya Imamura <wpdev@imamura.biz>\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
-
14
- #: newpost-catch/class.php:112
15
- msgid "Title:"
16
- msgstr ""
17
-
18
- #: newpost-catch/class.php:116
19
- msgid "Thumbnail Size"
20
- msgstr ""
21
-
22
- #: newpost-catch/class.php:117
23
- msgid "Width:"
24
- msgstr ""
25
-
26
- #: newpost-catch/class.php:120
27
- msgid "Height:"
28
- msgstr ""
29
-
30
- #: newpost-catch/class.php:124
31
- msgid "Showposts:"
32
- msgstr ""
33
-
34
- #: newpost-catch/class.php:125
35
- msgid "Posts"
36
- msgstr ""
37
-
38
- #: newpost-catch/class.php:128
39
- msgid "Display date"
40
- msgstr ""
41
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
newpost-catch.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Newpost Catch
4
  Plugin URI: http://www.imamura.biz/blog/
5
  Description: Thumbnails in new articles setting widget.
6
- Version: 1.0.0
7
  Author: Tetsuya Imamura
8
  Text Domain: newpost-catch
9
  Author URI: http://www.imamura.biz/blog/
@@ -16,7 +16,7 @@ include "class.php";
16
  //Hook
17
  add_action('widgets_init', create_function('', 'return register_widget("NewpostCatch");'));
18
 
19
- /* Copyright 2012 Tetsuya Imamura (email : wordpress@imamura.biz)
20
 
21
  This program is free software; you can redistribute it and/or modify
22
  it under the terms of the GNU General Public License, version 2, as
3
  Plugin Name: Newpost Catch
4
  Plugin URI: http://www.imamura.biz/blog/
5
  Description: Thumbnails in new articles setting widget.
6
+ Version: 1.0.1
7
  Author: Tetsuya Imamura
8
  Text Domain: newpost-catch
9
  Author URI: http://www.imamura.biz/blog/
16
  //Hook
17
  add_action('widgets_init', create_function('', 'return register_widget("NewpostCatch");'));
18
 
19
+ /* Copyright 2012 Tetsuya Imamura (email : wpdev@imamura.biz)
20
 
21
  This program is free software; you can redistribute it and/or modify
22
  it under the terms of the GNU General Public License, version 2, as
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Plugin Name ===
2
  Contributors: s56bouya
3
- Donate link: http://www.imamura.biz/
4
  Tags: widget, plugin, posts, sidebar, image, images
5
  Requires at least: 3.3.1
6
  Tested up to: 3.3.1
7
- Stable tag: 1.0.0
8
 
9
  Thumbnails in new articles setting widget.
10
 
@@ -33,9 +33,13 @@ I think that the more you do not even question...
33
 
34
  == Changelog ==
35
 
 
 
 
 
36
  = 1.0.0 =
37
  * First stable version.
38
 
39
  == Upgrade Notice ==
40
 
41
- Now plans to update various
1
  === Plugin Name ===
2
  Contributors: s56bouya
3
+ Donate link:
4
  Tags: widget, plugin, posts, sidebar, image, images
5
  Requires at least: 3.3.1
6
  Tested up to: 3.3.1
7
+ Stable tag: 1.0.1
8
 
9
  Thumbnails in new articles setting widget.
10
 
33
 
34
  == Changelog ==
35
 
36
+ = 1.0.1 =
37
+ * Has been updated so that it does not include the "Stick this post to the front page".
38
+ * A change since the previous version.
39
+
40
  = 1.0.0 =
41
  * First stable version.
42
 
43
  == Upgrade Notice ==
44
 
45
+ Nothing in particular.