is_local_attachment

函数
is_local_attachment ( $url )
参数
  • (string) $url URL to check
    Required:
返回值
  • (bool) True on success, false on failure.
定义位置
相关方法
is_attachmentis_locale_switchedwp_ajax_upload_attachmentwp_delete_attachmentwp_count_attachments
引入
2.0.0
弃用
-

is_local_attachment: 这个函数检查一个给定的附件是否属于当前网站。一个附件是一个附在文章或页面上的文件: 当你需要检查一个文件是否本地存储在网站的媒体库中时,这个函数很有用。

确定一个附件URI是否是本地的,是否真的是一个附件。

关于这个和类似的主题功能的更多信息,请查看《主题开发者手册》中的{@link Conditional Tags}文章。

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

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

常见问题

FAQs
查看更多 >