git-svn-id: https://plugins.svn.wordpress.org/pagemash/trunk@32368 b8457f37-d9ea-0310-8a92-e5e31aec5664

This commit is contained in:
jmash 2008-02-20 17:23:35 +00:00
parent 1cd3cb4698
commit b8930f7e1d
2 changed files with 3 additions and 3 deletions

View File

@ -17,11 +17,11 @@ If you want to see an example of the admin page check out: http://joelstarnes.co
= Development Version 1.0.0 beta =
I have just finished a major rebuild of the plugin to give full recursive suppot for unlimited nested children in a collapsable list which I've decided to release as the first major version 1.0.0. but it'd be really helpful if some people can download the 1.0.0 beta and give me some feedback to iron out any bugs.
I have just finished a major rebuild of the plugin to give full recursive suppot for unlimited nested children in a collapsable list which I've decided to release in beta as version 1.0.0. so give it a download from the link below and any feedback would be a great help http://joelstarnes.co.uk/contact
http://joelstarnes.co.uk/pagemash/example_v1.0.0
http://wordpress.org/extend/plugins/pagemash/download/pagemash.1.0.0.zip
http://joelstarnes.co.uk/downloads/pagemash1.0.0.zip
== Installation ==

View File

@ -89,7 +89,7 @@ function pageMash_getPages($post_parent){
id:<?=$page->ID;?>
[<a href="<?=get_settings('siteurl').'/wp-admin/post.php?action=edit&post='.$page->ID; ?>" title="Edit This Page">edit</a>]
<?php if($excludePagesFeature): ?>
[<a href="#" title="Show|Hide" class="excludeLink" onclick="toggleRemove(this);">hide</a>]
[<a href="#" title="Show|Hide" class="excludeLink" onclick="toggleRemove(this); return false">hide</a>]
<?php endif; ?>
</span>
<?php pageMash_getPages($page->ID) //call this function to list any sub-pages (passing it the pageID) ?>