如何向wordpress添加代码格式?

时间:2016-01-03 12:11:53

标签: html wordpress

我正在开发wordpress的教​​程博客,我打算在我写的页面/帖子中显示一些代码块。是否有一个插件来显示页面中的代码块(类似于崇高风格会更好)

2 个答案:

答案 0 :(得分:1)

要更改页面中代码块的设置,您可以使用 Crayon Syntax Highlighter 插件 要更改设置,您可以看到插件指令。

在帖子中使用来自tinymce的按钮并添加代码 enter image description here

或在html中使用此作为样本

<pre class="lang:php decode:true">
  $x="I Am Lemon Kazi";
  $y=explode(" ",$x);
  echo "Total Number of words in $x is ".count($y);
</pre>

按照这些插件的说明进行操作。这是代码块的屏幕截图。 enter image description here

答案 1 :(得分:1)

基本上按照https://codex.wordpress.org/Writing_Code_in_Your_Posts

中的说明操作

实际WordPress开发人员想到的解决方案是https://wordpress.org/plugins/syntaxhighlighter/。您安装插件,然后使用[code]短代码包装代码。