Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save himanipanchal/32794e99f8e2f470dabc2051bbd64773 to your computer and use it in GitHub Desktop.
Save himanipanchal/32794e99f8e2f470dabc2051bbd64773 to your computer and use it in GitHub Desktop.
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' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment