wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



is_local_attachment › WordPress Function

Depuis2.0.0
Dépréciéen/a
is_local_attachment ( $url )
Paramètres:
  • (string) $url URL to check
    Requis: Oui
Retourne:
  • (bool) True on success, false on failure.
Défini(e) dans:
Codex:

Determines whether an attachment URI is local and really an attachment.

For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Source

function is_local_attachment( $url ) {
	if ( ! str_contains( $url, home_url() ) ) {
		return false;
	}
	if ( str_contains( $url, home_url( '/?attachment_id=' ) ) ) {
		return true;
	}

	$id = url_to_postid( $url );
	if ( $id ) {
		$post = get_post( $id );
		if ( 'attachment' === $post->post_type ) {
			return true;
		}
	}
	return false;
}