如何在wordpress帖子中添加Bootstrap图标

时间:2015-03-18 13:40:34

标签: wordpress twitter-bootstrap wordpress-plugin

如何在wordpress帖子中添加Bootstrap图标 我想知道有任何插件或任何自定义CSS编辑选项可用于在帖子中添加bootstrap图标。

1 个答案:

答案 0 :(得分:1)

我不确定你的意思" Bootstrap icon"但是我假设你指的是Glyphicons而且那些没有特定的Bootstrap。

我还假设您已经通过Bootstrap加载了Glyphicons。

如果您想将其添加到帖子的正文中,您可以在主题函数文件中创建一个短代码:

   function glyphicon($atts, $content = null) {
          extract(shortcode_atts(
                    array(
             'glyphname' => ''
                    ), $atts)
          );
          return '<i class="glyphicon ' . $glyphname . '"></i>';
    }

add_shortcode('glyphicon', 'glyphicon');

然后在您的帖子中应用您想要的任何字形,而[glyphicon class="glyphicon-euro"]将输出<i class="glyphicon glyphicon-euro"></i>

另一种选择是使用HTML(上面的输出)。