Mary Immaculate Parish - Plainfield, IL

Accordion template pull pages in alphabetical order?

Assigned to
Kyle Sullivan, Web Development at Diocesan Kyle S.

Comments & Events

Kyle Sullivan, Web Development at Diocesan
Does the client want these sacraments in alphabetical order?
Veronica Alvarado, Project Manager at Diocesan
See if we can find a way to keep ORDER, but by default, pull in alphabetical A-Z
Veronica Alvarado, Project Manager at Diocesan
Nevermind. They're using Order, not alphabetical
Kyle Sullivan, Web Development at Diocesan
I've made the following adjustment to the WP_Query, and I also changed the color of the edit links to white.

$args = array(
    'post_type' => 'page',
    'posts_per_page' => '-1',
    'orderby' => 'menu_order title', // <= I modified this
    'order' => 'ASC',
    'post_parent' => $this_page
);
Kyle Sullivan, Web Development at Diocesan
Kyle Sullivan completed this to-do.