创建一个custom walker. 重新定义方法start_el()
仅限:
function start_el( &$output, $item, $depth, $args )
{
if ( \'Your secret item title\' !== $item->title
or current_user_can( \'administrator\' )
)
{
parent::start_el( &$output, $item, $depth, $args );
}
}
请注意,这只是伪代码。我现在不能对它进行测试。