wpseek.com
A WordPress-centric search engine for devs and theme authors



get_self_link › WordPress Function

Since5.3.0
Deprecatedn/a
get_self_link ( No parameters )
Returns:
  • (string) Correct link for the atom:self element.
Defined at:
Codex:

Returns the link for the currently displayed feed.



Source

function get_self_link() {
	$parsed = parse_url( home_url() );

	$domain = $parsed['host'];
	if ( isset( $parsed['port'] ) ) {
		$domain .= ':' . $parsed['port'];
	}

	return set_url_scheme( 'http://' . $domain . wp_unslash( $_SERVER['REQUEST_URI'] ) );
}