Web Development Starts Here…

5 WordPress Plugins to Highlight Your Code

Posted by on Nov 3, 2011 in Plugins, Wordpress | 0 comments

5 WordPress Plugins to Highlight Your Code

In this post I am going to show the wordpress plugins which are used to highlight the block of code.

These plugins mainly used for people who are involved in the web development. They generally have to post the css code, js code or other language’s code. By using any of the below plugin you can highlight your code block in better way.

1) CodeColorer

This plugin will allow you to insert the code snippet into post and pages with better highlight. This plugin have several themes available.

This plugin is also available in various languages. This blog uses this plugin for highlighting the block of code.

How to Use?

Download

Download Plugin

2) WP-Syntax

This plugin provide the better syntax highlighting using GeSHi, which supports most programming languages.

How to Use?

  <pre lang="LANGUAGE" line="1"> Code </pre>

  // PHP with No Line number
  <pre lang="php">
    // PHP Code goies Here
  </pre>
 
  // Java with line number
  <pre lang="java" line="1">
    // JAVA code goes here.
  </pre>

Download

Download Plugin

3) WP-Code

How to Use?

<code lang="LANGUAGE">
  // Your code goes Here
</code>

Download

Download Plugin

4) Crayon Syntax Highlighter

This plugin supports multiple lanaguages, themes, fonts. This plugin has facility to highlight from URL and even local file and/or post text.

How to Use?

  [crayon lang="lang"] your code [/crayon]
  // where lang will be your language
   
  // highlight from URL
  [crayon url="http://example.com/codeblock.txt" /]

Download

Download Plugin

5) WP Code Highlight

WP Code Highlight provides clean syntax highlighting and it is W3C valid.

This plugin wraps the code block with pre. This plugin also provide the code button in the HTML editor of the wordpress admin, so you can easily add the code block in your post or page.

How to Use?

<pre> Your Code Block Here </pre>

Download

Download Plugin

Your suggestions are always welcome. :)

No Comments

Join the conversation and post a comment.

Trackbacks/Pingbacks

  1. WordPress代码高亮插件 « 似水流年 夏末将至 - [...] 它有几种不同的主题可供选择。该插件的应用范围很广,适用于多种不同的语言。这篇博客用这款插件来高亮代码块。 [...]

Leave a Comment