wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_blog_permalink › WordPress Function

Seit
Veraltetn/v
get_blog_permalink ( $blog_id, $post_id )
Parameter: (2)
  • (int) $blog_id ID of the source blog.
    Erforderlich: Ja
  • (int) $post_id ID of the desired post.
    Erforderlich: Ja
Gibt zurück:
  • (string) The post's permalink.
Definiert in:
Codex:
Changelog:
  • MU

Gets the permalink for a post on another blog.



Quellcode

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

	return $link;
}