diff --git a/README.txt b/README.txt index 1aafab8..e5dded4 100644 --- a/README.txt +++ b/README.txt @@ -3,7 +3,7 @@ Contributors: JoelStarnes Tags: order pages, ajax, re-order, drag-and-drop, admin, Requires at least: 2.0 Tested up to: 2.4-bleeding -Stable tag: 0.1.2 +Stable tag: 0.1.3 Organise your page order with this simple drag-and-drop Ajax interface. @@ -20,14 +20,14 @@ If you want to see an example of the admin page check out: http://joelstarnes.co 1. Activate in 'Plugins' admin menu 1. {Edit your Template} -In most cases the plugin should work straight out the box, since most templates will include something similar to: `wp_list_pages('depth=1&title_li=);` +In most cases the plugin should work straight out the box, since most templates will include something similar to: `wp_list_pages('title_li=
You can use this to organise and manage your pages.
@@ -78,7 +88,7 @@ function pageMash_main(){To use this plugin you need to use the wp_list_pages() function with the parameters as shown below:
<?php if(function_exists('pageMash_exclude_pages')){$exclude_pages=pageMash_exclude_pages();} else{$exclude_pages='';}?>
-<?php wp_list_pages('depth=1&title_li=&exclude='.$exclude_pages);?>
+<?php wp_list_pages('title_li=<h2>Pages</h2>&exclude='.$exclude_pages);?>
For more information on the wp_list_pages() function checkout the Wordpress Codex and if you have any further questions, just drop me an email.