diff --git a/README.txt b/README.txt index 9a62bd1..f8ab75d 100644 --- a/README.txt +++ b/README.txt @@ -19,15 +19,15 @@ Customise the order your pages are listed in with a simple Ajax drag-and-drop ad 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=);` + `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: -`if(function_exists('pageMash_exclude_pages')){$exclude_pages=pageMash_exclude_pages();} else{$exclude_pages='';}` -`wp_list_pages('depth=1&title_li=&exclude='.$exclude_pages);` + `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` + `wp-content\themes\theme_name` == Frequently Asked Questions ==