知更鸟begin主题图片附件页面php警告修复

知更鸟begin主题图片附件页面php警告修复插图

图片附件页面提示的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之间的\。修改完保存,有缓存的话清除一下缓存,刷新页面,问题消失。

知更鸟begin主题图片附件页面php警告修复

 最后更新:2024-1-5
吾爱分享

发表评论