Tag Archive - plugin

Private WP suite WordPress plugin

My second WordPress plugin is finished, more info can be found in the links below.

http://poller.se/code/wordpress-plugins/#private-wp-suite
http://wordpress.org/extend/plugins/private-wp-suite/

Resize tag cloud wp plugin 0.2

I’ve updated the Resize tag cloud plugin for WordPress to version 0.2, and created a separate page for code. Plugin is submitted to the plugin repository, but not approved yet.

http://poller.se/code/wordpress-plugins/

Update – Plugin approved by wordpress.org: http://wordpress.org/extend/plugins/resize-tag-cloud/

Resize tag cloud in WordPress

Simple plugin for changing font sizes in the WordPress tag cloud.

resize-tag-cloud.php

<?php
        /*
        Plugin Name: Resize tag cloud
        Plugin URI: http://poller.se/2010/02/resize-tag-cloud-in-wordpress/
        Version: 0.1
        Author: Fredrik Poller
        Author URI: http://poller.se/
        Description: Resizes tag cloud font sizes
        */

        function resize_tag_cloud_filter($args = array()) {
                // Do changes on the lines below
                $args['smallest'] = 8;
                $args['largest']  = 18;
                $args['unit']     = 'pt';

                return $args;
        }

        add_filter('widget_tag_cloud_args', 'resize_tag_cloud_filter', 20);
?>

No config from the admin panel, do changes in the script.

Put file in the wp-content/plugins/ directory of your WordPress installation and active from the admin panel.