Php 设置功能图像不工作

Php 设置功能图像不工作,php,wordpress,Php,Wordpress,在我的博客上,当我为functions.php中的某些挂钩添加一些函数时,设置的功能图像无法正常工作。当我上传图片时,上面写着 上载过程中出错。请稍后再试 我在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_sta

在我的博客上,当我为functions.php中的某些挂钩添加一些函数时,设置的功能图像无法正常工作。当我上传图片时,上面写着

上载过程中出错。请稍后再试

我在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文件集中删除此函数时,功能图像开始正常工作。

在授予wp content/uploads文件夹的可写权限后,该功能开始工作