我正在开发wordpress的教程博客,我打算在我写的页面/帖子中显示一些代码块。是否有一个插件来显示页面中的代码块(类似于崇高风格会更好)
答案 0 :(得分:1)
要更改页面中代码块的设置,您可以使用 Crayon Syntax Highlighter 插件 要更改设置,您可以看到插件指令。
或在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>
答案 1 :(得分:1)
基本上按照https://codex.wordpress.org/Writing_Code_in_Your_Posts
中的说明操作实际WordPress开发人员想到的解决方案是https://wordpress.org/plugins/syntaxhighlighter/。您安装插件,然后使用[code]
短代码包装代码。