File: /www/wwwroot/www.cytocare.cn/wp-content/plugins/wedocs/includes/Walker.php
<?php
namespace WeDevs\WeDocs;
use Walker_Page;
/**
* weDocs Docs Walker.
*/
class Walker extends Walker_Page {
/**
* Initialize the class
*/
public function start_el( &$output, $page, $depth = 0, $args = [], $current_page = 0 ) {
if ( isset( $args['pages_with_children'][ $page->ID ] ) ) {
$args['link_after'] = '<span class="wedocs-caret"></span>';
}
parent::start_el( $output, $page, $depth, $args, $current_page );
}
}