From ce4909acc6a529e3b56baa22bef86fe754b97822 Mon Sep 17 00:00:00 2001 From: jmash Date: Wed, 13 Feb 2008 19:20:59 +0000 Subject: [PATCH] git-svn-id: https://plugins.svn.wordpress.org/pagemash/trunk@31777 b8457f37-d9ea-0310-8a92-e5e31aec5664 --- README.txt | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.txt b/README.txt index 1b5f32e..e3e4be7 100644 --- a/README.txt +++ b/README.txt @@ -22,12 +22,13 @@ If you want to see an example of the admin page check out: http://joelstarnes.co 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=);` -However to achieve full functionality including the 'exclude pages' feature you should replace the `wp_list_pages()` function with the following php code: +However to achieve full functionality including the 'exclude pages' feature you should replace the wp_list_pages() function with the following php code: `if(function_exists('pageMash_exclude_pages'))` `{$exclude_pages=pageMash_exclude_pages();} else{$exclude_pages='';}` `wp_list_pages('depth=1&title_li=&exclude='.$exclude_pages);` + You can place the code wherever you would like your page listings to appear; usually either the header.php or sidebar.php file found in: `wp-content\themes\theme_name` @@ -46,4 +47,13 @@ Currently only available in english. == Limitations== -The plugin will currently only handle top level pages. \ No newline at end of file +The plugin will currently only handle top level pages. + +==Change Log== + +0.1.0 > Initial Release +0.1.1 > Removed version check [line72] since some hosts will not allow external includes. + +==Road Map== + +For the next majour release I hope to support children pages and allow these to be sorted and moved between different parents in a nested list fashion. \ No newline at end of file