get_blog_permalink

函数
get_blog_permalink ( $blog_id, $post_id )
参数
  • (int) $blog_id ID of the source blog.
    Required:
  • (int) $post_id ID of the desired post.
    Required:
返回值
  • (string) The post's permalink
定义位置
相关方法
get_permalinkget_post_permalinkget_the_permalinkget_sample_permalinkget_blog_option
引入
-
弃用
-

get_blog_permink:根据站点的ID或域/路径组合检索网络中站点的固定链接结构。

获取另一个博客上的文章的固定链接。

function get_blog_permalink( $blog_id, $post_id ) {
	switch_to_blog( $blog_id );
	$link = get_permalink( $post_id );
	restore_current_blog();

	return $link;
}

常见问题

FAQs
查看更多 >