你不需要插件就可以做到这一点。为什么不使用wordpress自定义字段功能将自定义元数据添加到帖子中呢。
http://codex.wordpress.org/Custom_Fields
可以为添加教程的人员填写的每个字段创建自定义字段。然后将输入的值作为类添加到前端的困难html中,您可以使用它来设置样式。
例如,您有一个输出难度的div
<div class="difficulty beginner">beginner</div>
上面div中添加的值“初学者”是用户在填写教程帖子时选择的值。
在贴子页面中,应该是这样的
<?php $difficulty = get_post_meta(get_the_ID(), \'difficulty\');?>
<div class="difficulty <?php echo $difficulty ?>"><?php echo $difficulty ?></div>