Version Description
- Dedicated plugin public page.
- Described in the FAQ page "How to customize the css".
Download this release
Release Info
Developer | s56bouya |
Plugin | Newpost Catch |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- class.php +1 -1
- newpost-catch.php +2 -2
- readme.txt +39 -3
class.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
if ( !class_exists('NewpostCatch') ) {
|
6 |
class NewpostCatch extends WP_Widget {
|
7 |
/*** plugin variables ***/
|
8 |
-
var $version = "1.0.
|
9 |
var $pluginDir = "";
|
10 |
|
11 |
/*** plugin structure ***/
|
5 |
if ( !class_exists('NewpostCatch') ) {
|
6 |
class NewpostCatch extends WP_Widget {
|
7 |
/*** plugin variables ***/
|
8 |
+
var $version = "1.0.2";
|
9 |
var $pluginDir = "";
|
10 |
|
11 |
/*** plugin structure ***/
|
newpost-catch.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/*
|
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.
|
7 |
Author: Tetsuya Imamura
|
8 |
Text Domain: newpost-catch
|
9 |
Author URI: http://www.imamura.biz/blog/
|
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.0.2
|
7 |
Author: Tetsuya Imamura
|
8 |
Text Domain: newpost-catch
|
9 |
Author URI: http://www.imamura.biz/blog/
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
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.
|
8 |
|
9 |
Thumbnails in new articles setting widget.
|
10 |
|
@@ -23,7 +23,39 @@ Thumbnails in new articles setting widget.
|
|
23 |
|
24 |
== Frequently Asked Questions ==
|
25 |
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
== Screenshots ==
|
29 |
|
@@ -33,6 +65,10 @@ I think that the more you do not even question...
|
|
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.
|
1 |
=== Plugin Name ===
|
2 |
Contributors: s56bouya
|
3 |
+
Donate link: http://www.imamura.biz/blog/
|
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.2
|
8 |
|
9 |
Thumbnails in new articles setting widget.
|
10 |
|
23 |
|
24 |
== Frequently Asked Questions ==
|
25 |
|
26 |
+
-- Apply your own css style --
|
27 |
+
|
28 |
+
(Located in the plug-in directory) CSS �� style.css file the default
|
29 |
+
|
30 |
+
(Please create a directory under the theme/css/) CSS file for customization �� newpost-catch.css
|
31 |
+
|
32 |
+
|
33 |
+
Priority
|
34 |
+
|
35 |
+
newpost-catch.css > style.css
|
36 |
+
|
37 |
+
Will be applied at.
|
38 |
+
|
39 |
+
|
40 |
+
style.css are marked with the movement when the mouse is moved over in the webkit of css3.
|
41 |
+
|
42 |
+
(You can check the behavior of firefox-enabled browser webkit, such as google Chrome)
|
43 |
+
|
44 |
+
With regard to CSS will either use the default CSS,
|
45 |
+
|
46 |
+
I used the CSS that you created in your own, please change to your liking.
|
47 |
+
|
48 |
+
|
49 |
+
�� With the version up of the plug-in, so will be overwritten "style.css" file each time,
|
50 |
+
|
51 |
+
I think how to directly edit the "style.css" file and how would you or declined.
|
52 |
+
|
53 |
+
If you wish to apply a CSS style on its own,
|
54 |
+
|
55 |
+
In the "theme directory / css /" as you please create a "newpost-catch.css".
|
56 |
+
|
57 |
+
Please the name of the file to create and "newpost-catch.css". The other is the file name, does not apply.
|
58 |
+
|
59 |
|
60 |
== Screenshots ==
|
61 |
|
65 |
|
66 |
== Changelog ==
|
67 |
|
68 |
+
= 1.0.2 =
|
69 |
+
* [Dedicated plugin public page.](http://www.imamura.biz/blog/newpost-catch/)
|
70 |
+
* Described in the [FAQ page](http://wordpress.org/extend/plugins/newpost-catch/faq/) "How to customize the css".
|
71 |
+
|
72 |
= 1.0.1 =
|
73 |
* Has been updated so that it does not include the "Stick this post to the front page".
|
74 |
* A change since the previous version.
|