get_blog_permalink( int $blog_id, int $post_id )
Get the permalink for a post on another blog.
Description Description
Parameters Parameters
- $blog_id
-
(int) (Required) ID of the source blog.
- $post_id
-
(int) (Required) ID of the desired post.
Return Return
(string) The post's permalink
Source Source
File: wp-includes/ms-functions.php
function get_blog_permalink( $blog_id, $post_id ) {
switch_to_blog( $blog_id );
$link = get_permalink( $post_id );
restore_current_blog();
return $link;
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| MU (3.0.0) 1.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Example
From any blog in the network, get the permalink for post with ID 6 on blog ID 3.