Definition:
function get_blog_permalink( $_blog_id, $post_id ) {}
Get the permalink for a post on another blog.
Parameters
- int $_blog_id: ID of the source blog.
- int $post_id: ID of the desired post.
Return values
returns:The post’s permalink
Source code
function get_blog_permalink( $_blog_id, $post_id ) { $key = "{$_blog_id}-{$post_id}-blog_permalink";
1216
No comments yet... Be the first to leave a reply!