2017-01-30 2 views

答えて

0

は/wp-content/plugins/breadcrumb-navxt/class.bcn_breadcrumb_trail.php

検索機能の表示に行くとに置き換える:あなたは、私が追加している別のバージョンを使用している場合

public function display($return = false, $linked = true, $reverse = false) 
{ 
    //Set trail order based on reverse flag 
    $this->order($reverse); 
    //Initilize the string which will hold the assembled trail 
    $trail_str = ''; 
    $position = 1; 
    //The main compiling loop 
    foreach($this->breadcrumbs as $key => $breadcrumb) 
    { 
     //We do different things for the separator based on the breadcrumb order 
     if($reverse) 
     { 
      //Add in the separator only if we are the 2nd or greater element 
      if($key > 0) 
      { 
       $trail_str .= $this->opt['hseparator']; 
      } 
     } 
     else 
     { 
      if($key == 0 ) continue; 
      //Only show the separator when necessary 
      if($key < count($this->breadcrumbs) - 1) 
      { 
       $trail_str .= $this->opt['hseparator']; 
      } 
     } 
     //Trim titles, if needed 
     if($this->opt['blimit_title'] && $this->opt['amax_title_length'] > 0) 
     { 
      //Trim the breadcrumb's title 
      $breadcrumb->title_trim($this->opt['amax_title_length']); 
     } 
     //Place in the breadcrumb's assembled elements 
     $trail_str .= $breadcrumb->assemble($linked, $position); 
     $position++; 
    } 
    //Should we return or echo the assembled trail? 
    if($return) 
    { 
     return $trail_str; 
    } 
    else 
    { 
     //Helps track issues, please don't remove it 
     $credits = "<!-- Breadcrumb NavXT " . $this::version . " -->\n"; 
     echo $credits . $trail_str; 
    } 
} 

この列:

if($key == 0 ) continue; 
+0

ありがとうございました –

関連する問題