这是一个从2.6 开始的一个BUG,之前反馈过,但还没修复,今天再提一遍。
具体表现为:
主题后台开启代码高亮,在前端编辑代码并高亮,一切正常。如下图:
当我发布后,重新编辑日志,不做任何修改,再发布:
因为我经常使用这个功能,希望春哥能够修复一下,
还有那个前端编辑日志内的图片“添加图片注释”会上跳至日志顶部的问题。也是一个从2.6开始的BUG 了。
以下是我使用的部分代码:
以下是高亮的PHP代码:
<?php if ( get_header_image() ) : ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
<img src="<?php header_image(); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
</a>
<?php endif; ?>
<?php get_template_part( 'template-parts/header/header', 'image' ); ?>
<?php the_custom_header_markup(); ?>
以上是使用前端编辑器高亮的代码