Skip to content

Instantly share code, notes, and snippets.

View himanipanchal's full-sized avatar

Himani Panchal himanipanchal

  • Ahmedabad
View GitHub Profile
@himanipanchal
himanipanchal / gist:32794e99f8e2f470dabc2051bbd64773
Created August 29, 2023 12:22
is_local_attachment( string $url) function example
<?php
if ( is_local_attachment( $url ) ) {
echo esc_url( $url ) . ' ' . esc_html__( 'is a local attachment.', 'your-text-domain' );
} else {
echo esc_url( $url ) . ' ' . esc_html__( 'is not a local attachment.', 'your-text-domain' );
}
?>