Online Forum To Support Coders With Technical Assistance - Read Write Execute

How to remove outer ul and div from WordPress menu

Ankit Agrawal
Ankit Agrawal
Published on August 9, 2015 · 1 min read
<?php
$aMenuParams = array(
'container'       => false,
'echo'            => false,
'items_wrap'      => '%3$s',
'depth'           => 0,
);		
echo strip_tags(wp_nav_menu( $aMenuParams ), '<li><a>' );		
?>

Was this article helpful?
Ankit Agrawal

Ankit Agrawal

Author & Senior Engineer at CodeExecute

Writing practical engineering guides, debugging real-world bottlenecks, and creating free tools for developer productivity.

← Previous Article Bootstrap Basics : Getting started Next Article → How to add new custom post type in wordpress