我通过更改compare中的以下代码来解决这个问题。Yith插件中的php。
<?php foreach ($fields as $field => $name) : ?>
<th>
<?php if ($field != \'image\') echo esc_html( $name); ?>
</th>
.
.
.
更改为此=>;
<?php foreach ($fields as $field => $name) : ?>
<th>
<?php if ($field != \'image\') echo esc_html( $field ); ?>
</th>
.
.
.