dongtuo5262 2016-01-22 01:51
浏览 62

set-post-thumbnail wp-ajax返回0

i try use the media manager from wordpress i use the post editor outside admin wordpress and users can create a posts whit a featured image. I use _wp_post_thumbnail_html function to show image or show link to upload file, all users whit a rol "publisher" can upload images and upload work but doesn't work show featured image or assign to post.

on wp-ajax whit action: set-post-thumbnail returns 0 and image aren't assign to new post. wp-ajax.php:

json:true thumbnail_id:3952 _wpnonce:b02e8553f1 action:set-post-thumbnail

response: 0

My code as:

<?php $thumbnail_id = get_post_meta( $post_id, '_thumbnail_id', true );
                        //$postid =  get_post( $post_id );
                        echo _wp_post_thumbnail_html( $thumbnail_id, $post_id );
                    ?>
                    <br>

Very simple, show the media manager from wordpres, allow upload featured image but not allow assign to new post. Any solution?

edit: in edit post works fine allow change featured image i suppose because featured image required a post id, but on new post from wordpress allow upload image and asign this to new post.

  • 写回答

1条回答 默认 最新

  • duanmaifu3428 2016-01-22 06:05
    关注

    This is proper image-uploading code.

    <?php
    global $wpdb;
    include ('../../../../wp-load.php');
    if ( $_FILES ) {
    
        if(!function_exists('wp_handle_upload')){
            require_once(ABSPATH . 'wp-admin/includes/file.php');
            require_once(ABSPATH . "wp-admin" . '/includes/image.php');
            require_once(ABSPATH . "wp-admin" . '/includes/file.php');
            require_once(ABSPATH . "wp-admin" . '/includes/media.php');
        }
    
    
    
        $upload_overrides = array('test_form' => false);
    
        $response = array();
        ini_set('max_execution_time', 0);
        foreach($_FILES as $file){
    
            $movefile_profile = wp_handle_upload($file, $upload_overrides);
            $filename = $movefile_profile['url'];
            $parent_post_id = $post_id; // please provide post id must
            $filetype = wp_check_filetype( basename( $filename ), null );
            $wp_upload_dir = wp_upload_dir();
            $attachment = array(
                'guid'           => $wp_upload_dir['url'] . '/' . basename( $filename ), 
                'post_mime_type' => $filetype['type'],
                'post_title'     => preg_replace( '/\.[^.]+$/', '', basename( $filename ) ),
                'post_content'   => '',
                'post_status'    => 'inherit'
            );
    
            $attach_id = wp_insert_attachment( $attachment, $filename, $parent_post_id );
            $filepath = $wp_upload_dir['path'] . '/' . basename( $filename );
            $attach_data = wp_generate_attachment_metadata( $attach_id, $filepath );
            wp_update_attachment_metadata( $attach_id, $attach_data );
            set_post_thumbnail($post_id, $attach_id); // this set_post_thumbnail will set you post thumbnail
            $response['message'] = 'Done';
        }
    
        echo json_encode($response);
        die();
    
    }
    

    And for Ajax code, go to this link. If you any problems, then please comment below.

    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog