Tags
- 8-Bit
- ActionScript
- AJAX
- Animation
- Atmel
- Audio
- AVR
- AVR-GCC Toolchain
- Bash
- Blender
- Bluetooth
- C/C++
- Code
- Cross-Platform
- Debugging
- Dice
- Dynamic Pages
- Eagle3D
- Electronics
- Examples
- Fedora
- flac
- Flash
- format
- Games
- GhostScript
- Hacks
- HTML
- image manipulation
- Interactive Pages
- Java
- Javascript
- jquery
- Linux
- man pages
- Manual
- Math
- Microcontrollers
- mp3
- NBC
- New-Age
- NXC
- NXT
- Package Management
- Parametric Table
- PHP
- python
- Qt
- Reference
- Rendering
- RISC
- RPG
- RPM
- Shell Script
- Soccerball
- SQL
- SysAdmin
- Toys
- Video
- Wordpress
- Wordpress Plugins
and the code to accomplish this in wordpress:
if( function_exists('wp_tag_cloud') ) {
$opts='';
$opts.='&smallest=8&largest=22unit&pt';
$opts.='&number=0&format=list';
$opts.='&orderby=name&order=ASC';
$opts.='exclude=&include=';
$opts.=substr($opt,1);
echo( '<style>' );
echo( '#_tagcloud ul{list-style:none} #_tagcloud ul li{list-style-type:none;float:left;padding:.5em}' );
echo( '</style>' );
echo( '<div id="_tagcloud">' );
wp_tag_cloud($opts);
echo( '</div>' );
echo( '<br style="clear:left;"/>' );
}
Leave a comment