Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: update_attached_file

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
203  *
204  * @param int $attachment_id Attachment ID
205  * @param string $file File path for the attachment
206  * @return bool True on success, false on failure.
207  */
208 function update_attached_file( $attachment_id, $file ) {
209      if ( !get_post( $attachment_id ) )
210           return false;
211
212      $file = apply_filters( 'update_attached_file', $file, $attachment_id );
213      if ( $file = _wp_relative_upload_path( $file ) )
214           return update_post_meta( $attachment_id, '_wp_attached_file', $file );
215      else
216           return delete_post_meta( $attachment_id, '_wp_attached_file' );
217 }
218
219 /**
220  * Return relative path to an uploaded file.
221  *