links_add_base_url

函数


links_add_base_url ( $content, $base, $attrs = array('src', 'href') )
参数
  • (string)
    $content
    String to search for links in.
    Required:
  • (string)
    $base
    The base URL to prefix to links.
    Required:
  • (array)
    $attrs
    The attributes which should be processed.
    Required:
    Default: array(‘src’, ‘href’)
返回值
  • (string) The processed content.
定义位置
  • wp-includes/formatting.php
    , line 5295
引入
2.7.0
弃用

为传递的内容中的相对链接添加一个基本URL。

默认情况下,它支持 “src “和 “href “属性。然而,这可以通过第三个参数来改变。

function links_add_base_url( $content, $base, $attrs = array( 'src', 'href' ) ) {
	global $_links_add_base;
	$_links_add_base = $base;
	$attrs           = implode( '|', (array) $attrs );
	return preg_replace_callback( "!($attrs)=(['"])(.+?)2!i", '_links_add_base', $content );
}