Custom Page Menus plugin allows custom menus to be defined on a per-page basis.
The included pages can be defined using the ‘Custom Page Menus’ admin panel on the page-edit screen ( see screenshots ).
The widget allows you to select whether to display the page’s featured image next to the link. (I would recommend using icon sized images for this feature)
On the page-edit screen a custom title for that specific page can also be defined. This title will be used should that page appear anywhere on one of the menus created with the plugin.
The menu can be added to any dynamic sidebar using the Custom Page Menus widget or alternatively coded into themes using the custom template tag:
cpMenu()
$args = array(
‘show_date’ => ,
‘date_format’ => get_option(‘date_format’),
‘child_of’ => 0,
‘exclude’ => ,
‘title_li’ => __(‘Pages’),
‘echo’ => 1,
‘authors’ => ,
‘sort_column’ => ‘menu_order, post_title’,
‘link_before’ => ,
‘link_after’ => ,
‘walker’ => );
Example Usage: http://catn.com/tech/data-centre/
custom-page-menu
folder to the /wp-content/plugins/
directoryNo, the widget will only output on pages with included Custom Page Menus Widget items.
Should a page not have any menu defined the widget will not display anything or affect the layout of the page in any way.
The included pages will be stored in a comma seperated list of ID’s in the page custom meta.
This meta data might be visible in some WP installs as ‘custom field’ below the page edit window and should not be edited directly.
Appart from the widget Custom Page Menus can also be included using the template tag: ”
This function will accept all the standard wp_list_pages arguments. Note that the featured image can not yet be added via the template tag although this will be added to a future release.