Hi Steve,
It’s not down to the version of WordPress. The plugin code was rewritten and improved in November and the data storage method was changed to reduce record entries in your post meta table.
If you want to get the menu label for a specific page ID you would need to use
[code]$pgmenueditor = get_post_meta($the_page_id, 'dsa_pagemenueditor');
$menu_label = stripslashes($pgmenueditor[0]['menu_label']);[/code]
To get the title attribute you would then use
[code]$title_attribute = stripslashes($pgmenueditor[0]['title_attribute']);[/code]
hope that helps ??
kplusplus – still don’t know what problem you’re having? I’m currently fixing one issue that’s been highlighted which may or may not be the same as yours, just running a bit slow as I have a broken arm right now!