wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
is_local_attachment › WordPress Function
Seit2.0.0
Veraltetn/v
› is_local_attachment ( $url )
Parameter: |
|
Gibt zurück: |
|
Definiert in: |
|
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.Ähnliche Funktionen: is_attachment, is_locale_switched, wp_ajax_upload_attachment, wp_delete_attachment, wp_count_attachments
Quellcode
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; }