设置功能图像不起作用

时间:2017-02-02 08:31:46

标签: php wordpress

在我的博客上,当我为functions.php中的某些钩子添加一些函数时,然后设置特征图像不能正常工作。当我上传图片时说

  

"上传时出错。请稍后重试"

error page

我为functions.php文件添加了功能代码

add_action('transition_post_status', 'send_new_post', 10, 3);

// Listen for publishing of a new post
function send_new_post($new_status, $old_status, $post) {
  if('publish' === $new_status && 'publish' !== $old_status) { 
        $post_id = $post->ID;
        echo "<script>postId = console.log(".$post_id.")</script>";
  }
}

当我从functions.php文件中删除此功能时,设置功能图像开始正常工作。

1 个答案:

答案 0 :(得分:1)

在向wp-content / uploads文件夹提供可写权限后,它正在工作