Version Description
Download this release
Release Info
Developer | fernandobt |
Plugin | List category posts |
Version | 0.1.1 |
Comparing to | |
See all releases |
Code changes from version 0.1 to 0.1.1
- list_cat_posts.php +2 -2
- readme.txt +11 -2
list_cat_posts.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: List category posts.
|
4 |
Plugin URI: http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/
|
5 |
Description: List Category Posts is a simple WordPress plugin which allows you to list some posts from a category into a post/page using [catlist=ID], where ID stands for the Category Id. You can list several categories on the same page/post. You can use [catlist=ID] as many times as needed with different Id’s. You may also define a limit of posts to show. Great to use WordPress as a CMS, and create pages with several categories posts. <br/><br/>Inspired by Category Page: http://wordpress.org/extend/plugins/page2cat/<br/>Category Page is a good plugin, but too complicated and big for what I needed. I just needed to list posts from a certain category, and be able to use several category id's to list on one page.
|
6 |
-
Version: 0.1
|
7 |
Author: Fernando Briano
|
8 |
Author URI: http://picandocodigo.net/wordpress/
|
9 |
*/
|
@@ -54,7 +54,7 @@ return $content;
|
|
54 |
}
|
55 |
|
56 |
function lcp_add_option_page(){
|
57 |
-
add_options_page('Category List', 'Category List', 'manage_options','
|
58 |
}
|
59 |
|
60 |
add_filter('the_content','list_category_posts');
|
3 |
Plugin Name: List category posts.
|
4 |
Plugin URI: http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/
|
5 |
Description: List Category Posts is a simple WordPress plugin which allows you to list some posts from a category into a post/page using [catlist=ID], where ID stands for the Category Id. You can list several categories on the same page/post. You can use [catlist=ID] as many times as needed with different Id’s. You may also define a limit of posts to show. Great to use WordPress as a CMS, and create pages with several categories posts. <br/><br/>Inspired by Category Page: http://wordpress.org/extend/plugins/page2cat/<br/>Category Page is a good plugin, but too complicated and big for what I needed. I just needed to list posts from a certain category, and be able to use several category id's to list on one page.
|
6 |
+
Version: 0.1.1
|
7 |
Author: Fernando Briano
|
8 |
Author URI: http://picandocodigo.net/wordpress/
|
9 |
*/
|
54 |
}
|
55 |
|
56 |
function lcp_add_option_page(){
|
57 |
+
add_options_page('Category List', 'Category List', 'manage_options','list-category-posts/list_cat_posts_options.php');
|
58 |
}
|
59 |
|
60 |
add_filter('the_content','list_category_posts');
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate Link: http://picandocodigo.net/programacion/wordpress/list-category-posts
|
|
4 |
Tags: list, categories, posts, cms
|
5 |
Requires at least: 2.0
|
6 |
Tested up to: 2.6
|
7 |
-
Stable tag: 0.1
|
8 |
|
9 |
== Description ==
|
10 |
List Category Posts is a simple WordPress plugin which allows you to list some posts from a category into a post/page using [catlist=ID], where ID stands for the Category Id. You can list several categories on the same page/post. You can use [catlist=ID] as many times as needed with different Id’s. You may also define a limit of posts to show.
|
@@ -24,4 +24,13 @@ List category posts was written with Geany - http://geany.uvena.de/
|
|
24 |
|
25 |
==Usage==
|
26 |
|
27 |
-
When writing a post/page, use [catlist=ID] where ID is the Id for a specific category. You can change the way List Category Posts shows the posts in your CSS by editing "lcp_catlist". The generated code is: <ul class="lcp_catlist">, and a <li> for each post in the category.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
Tags: list, categories, posts, cms
|
5 |
Requires at least: 2.0
|
6 |
Tested up to: 2.6
|
7 |
+
Stable tag: 0.1.1
|
8 |
|
9 |
== Description ==
|
10 |
List Category Posts is a simple WordPress plugin which allows you to list some posts from a category into a post/page using [catlist=ID], where ID stands for the Category Id. You can list several categories on the same page/post. You can use [catlist=ID] as many times as needed with different Id’s. You may also define a limit of posts to show.
|
24 |
|
25 |
==Usage==
|
26 |
|
27 |
+
When writing a post/page, use [catlist=ID] where ID is the Id for a specific category. You can change the way List Category Posts shows the posts in your CSS by editing "lcp_catlist". The generated code is: <ul class="lcp_catlist">, and a <li> for each post in the category.
|
28 |
+
|
29 |
+
==Other notes==
|
30 |
+
|
31 |
+
0.1.1
|
32 |
+
* Fixed major bug, which gave 404 error when trying to use "Options" page.
|
33 |
+
|
34 |
+
0.1
|
35 |
+
* Option page to limit number of posts.
|
36 |
+
* Working using [category=ID] for posts and pages, with several categories support.
|