Forum Replies Created
-
AuthorPosts
-
pixel016Member
Where to do this ?
pixel016MemberPlease
pixel016Member?? ? 🙂
pixel016MemberDo you have an idea ?
pixel016MemberOnly on email notification
pixel016MemberPlease i need your help
pixel016MemberPLEASE !
pixel016MemberCan i have help please ?
pixel016MemberI precise the code is executed in ‘profile_update’ hook
pixel016MemberThanks Khaled, but when i use your code, when i’m logged like user and update my profile picture in the media library a new item is created but empty :s But the image profile update is ok
February 26, 2014 at 1:41 pm in reply to: File upload field > update image in wordpress library #4917pixel016MemberThe full code :
$filename = get_user_meta($current_user->ID, 'image_profil',true); $wp_filetype = wp_check_filetype(basename(WP_CONTENT_DIR . '/uploads' . $filename), null ); $wp_upload_dir = wp_upload_dir(); $attachment = array( 'guid' => $wp_upload_dir['url'] . '/' . basename( WP_CONTENT_DIR . '/uploads' . $filename ), 'post_mime_type' => $wp_filetype['type'], 'post_title' => $userNickname, 'post_content' => $userDescription, 'post_status' => 'inherit' ); $thumbnail_id = get_post_thumbnail_id( $post_id ); if ($thumbnail_id == "") { // Si une image existe pas alors on l'ajoute //error_log('ajout nouvelle image id : '.$thumbnail_id); $attach_id = wp_insert_attachment( $attachment, WP_CONTENT_DIR . '/uploads' . $filename, $post_id); require_once( ABSPATH . 'wp-admin/includes/image.php' ); $attach_data = wp_generate_attachment_metadata( $attach_id, WP_CONTENT_DIR . '/uploads' . $filename ); wp_update_attachment_metadata( $attach_id, $attach_data ); set_post_thumbnail( $post_id, $attach_id ); } else { // Sinon on la remplace //error_log('remplacement image id : '.$thumbnail_id); //wp_delete_attachment($thumbnail_id ); $attach_id = wp_insert_attachment( $attachment, WP_CONTENT_DIR . '/uploads' . $filename, $post_id); require_once( ABSPATH . 'wp-admin/includes/image.php' ); $attach_data = wp_generate_attachment_metadata( $attach_id, WP_CONTENT_DIR . '/uploads' . $filename ); wp_update_attachment_metadata( $attach_id, $attach_data ); set_post_thumbnail( $post_id, $attach_id ); }
February 21, 2014 at 4:40 pm in reply to: File upload field > update image in wordpress library #4876pixel016MemberNobody can help me ?
February 19, 2014 at 9:22 am in reply to: Registration form with a biography field that contains text and hmlt #4862pixel016MemberNo idea ?
February 10, 2014 at 10:33 am in reply to: Registration form with a biography field that contains text and hmlt #4818pixel016MemberYes i use it but only the text is saved on my custom post, the html not appear.
-
AuthorPosts