If you use parent/child relations ships you can use the child_of argument of wp_list_pages(). If not, you could use the include= argument.
Consider downloading and installing Otto’s PHP Code Widget, then something like this code in one of those widgets:
<?php wp_list_pages('include=5,9,23&title_li=<h2>' . __('Liturgical Ministries') . '</h2>' ); ?>
See the template tag, wp_list_pages(), for more arguments and examples
Thread Starter
pdking
(@pdking)
THanks very much Michael. I’ll give it a shot and see how I make out.