Prevent tags breaking page layout

This commit is contained in:
Mike Jolley 2016-11-23 15:49:35 +00:00
parent b1007c9d62
commit c8d1acb33e
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
?> ?>
<tr> <tr>
<th><?php echo wp_kses_post( $meta->display_key ); ?>:</th> <th><?php echo wp_kses_post( $meta->display_key ); ?>:</th>
<td><?php echo wp_kses_post( $meta->display_value ); ?></td> <td><?php echo wp_kses_post( force_balance_tags( $meta->display_value ) ); ?></td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>
</table> </table>