
图片附件页面提示的PHP警告内容:Warning: filesize(): stat failed for /wp-content/uploads/** in /wp-content/themes/begin/image.php on line 28
找到themes/begin/image.php中的第28行代码
修改前:
<\?php echo size_format( filesize( get_attached_file( get_the_ID() ) ), 2 ); ?>
修改后:
<\?php $file_path = get_attached_file( get_post_thumbnail_id() );
if ( file_exists( $file_path ) ) {
echo size_format( filesize( $file_path ), 2 );
} else {
echo '文件不存在';
} ?>
注意:实际中没有<和?php之间的\。修改完保存,有缓存的话清除一下缓存,刷新页面,问题消失。



评论