8080 Barcode Generator

Use a simple shortcode to generate barcode.

Author:Michal Lipinski (profile at wordpress.org)
WordPress version required:3.3
WordPress version tested:4.0
Plugin version:1.0.3
Added to WordPress repository:13-04-2014
Last updated:16-10-2014
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:100
Rated by:1
Plugin URI:http://www.mlipinski.pl/plugins/barcode-gener...
Total downloads:2 409
Active installs:100+
plugin download
Click to start download

With 8080 Barode Genertor you can generte barcodes in CODE128, CODE39, CODE25, CODABAR. To add barcode in yours site you have to only put simple shortcode wherever you want. DEMO

For example:

[barcode text="1234test" size="100" text_size="10" codetype="code128"]

This shortcode generate barcode with code type CODE128 coding "1234test" height of barcode is 100px and size of text is 10px.

For advanced usage you can use m8080_barcode filter:

add_filter('m8080_barcode','m8080_test');
function m8080_test($attr){
    $attr['text']='1243abcert2';
    $attr['size']=150;
    $attr['text_size']=20;
    $attr['code_type']='code128';
    return $attr;
}