Skip to content

Instantly share code, notes, and snippets.

@Ikaring
Ikaring / CustomWalkerPage
Created September 5, 2016 03:38
Custom walker class to display ACF image field to wp_list_pages
<?php
class My_Walker_Page extends Walker_Page {
public function start_el( &$output, $page, $depth = 0, $args = array(), $current_page = 0 ) {
if ( $depth ) {
$indent = str_repeat( "\t", $depth );
} else {
$indent = '';
}
$css_class = array( 'page_item', 'page-item-' . $page->ID );