prepend_to_url() public static méthode

public static prepend_to_url ( string $url, string $path ) : string
$url string
$path string
Résultat string
 /**
  * @internal
  * @param string $url
  * @param string $text
  * @return mixed
  */
 protected function get_archives_link($url, $text)
 {
     $ret = array();
     $ret['text'] = $ret['title'] = $ret['name'] = wptexturize($text);
     $ret['url'] = $ret['link'] = esc_url(URLHelper::prepend_to_url($url, $this->base));
     return $ret;
 }