get_blog_permalink()

get_blog_permalink( int $blog_id, int $post_id ) 获取另一个博…

get_blog_permalink( int $blog_id, int $post_id )

获取另一个博客上的帖子的永久链接。
Get the permalink for a post on another blog.

目录锚点:#参数#返回#源码#笔记


参数(Parameters)

参数 类型 必填 说明
$blog_id (int) 必需 源博客的ID。
$post_id (int) 必需 所需职位的ID。

返回(Return)

(string)post的permalink


源码(Source)

/**
 * Get the permalink for a post on another blog.
 *
 * @since MU 1.0
 *
 * @param int $blog_id ID of the source blog.
 * @param int $post_id ID of the desired post.
 * @return string The post's permalink
 */
function get_blog_permalink( $blog_id, $post_id ) {
	switch_to_blog( $blog_id );
	$link = get_permalink( $post_id );
	restore_current_blog();

	return $link;
}
更新版本 源码位置 使用 被使用
MU (3.0.0) 1.0 wp-includes/ms-functions.php:325 0 3

笔记(Notes)

例子

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册