Add dynamic content block to nav section generated by custom walker
At the end of your Navigation Walker you can just append to the $output like so: $output .= apply_filters( ‘walker_nav_menu_start_el’ , $item_output , $item , $depth , $args ); // This is before the ending list item: $output .= ‘<span>Inner Navigational Text</span>’; To get the post meta (I’m not familiar with ACF) you can use … Read more