Changeset 653024
- Timestamp:
- 01/15/2013 03:14:06 PM (13 years ago)
- Location:
- linear-tag-cloud
- Files:
-
- 3 deleted
- 4 edited
-
screenshot-1.png (deleted)
-
screenshot-2.png (deleted)
-
screenshot-3.png (deleted)
-
tags/1/index.php (modified) (2 diffs)
-
tags/1/readme.txt (modified) (2 diffs)
-
trunk/index.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
linear-tag-cloud/tags/1/index.php
r652970 r653024 5 5 Description: A tag clob with bars and not dimensions. 6 6 Author: Andrea Rufo 7 Version: 1. 07 Version: 1.1 8 8 Author URI: http://www.orangedropdesign.com/ 9 9 … … 35 35 <p> 36 36 <label for="<?php echo $this->get_field_id( 'number' ); ?>">Max number of tags:</label> 37 <input class="widefat" type=" text" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo $instance['number']; ?>"/>37 <input class="widefat" type="number" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo $instance['number']; ?>" request /> 38 38 </p> 39 39 40 40 <p> 41 41 <label for="<?php echo $this->get_field_id( 'border' ); ?>">Border color:</label> 42 <input class="widefat" type=" text" id="<?php echo $this->get_field_id( 'border' ); ?>" name="<?php echo $this->get_field_name( 'border' ); ?>" value="<?php echo $instance['border']; ?>" />42 <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'border' ); ?>" name="<?php echo $this->get_field_name( 'border' ); ?>" value="<?php echo $instance['border']; ?>" /> 43 43 </p> 44 44 45 45 <p> 46 46 <label for="<?php echo $this->get_field_id( 'background' ); ?>">Background color:</label> 47 <input class="widefat" type=" text" id="<?php echo $this->get_field_id( 'background' ); ?>" name="<?php echo $this->get_field_name( 'background' ); ?>" value="<?php echo $instance['background']; ?>" />47 <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'background' ); ?>" name="<?php echo $this->get_field_name( 'background' ); ?>" value="<?php echo $instance['background']; ?>" /> 48 48 </p> 49 49 50 50 <p> 51 <label for="<?php echo $this->get_field_id( 'color' ); ?>">Text color :</label>52 <input class="widefat" type=" text" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" value="<?php echo $instance['color']; ?>" />51 <label for="<?php echo $this->get_field_id( 'color' ); ?>">Text color (applied on a tag):</label> 52 <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" value="<?php echo $instance['color']; ?>" /> 53 53 </p> 54 54 -
linear-tag-cloud/tags/1/readme.txt
r652834 r653024 1 1 === Linear Tag Cloud === 2 2 Contributors: andrearufo 3 Donate link: www.orangedropdesign.com4 Tags: bar chart, tag cloud, percentage, responsive, chart3 Donate link: http://www.orangedropdesign.com 4 Tags: bar chart, tag-cloud, responsive, widget, alternative tag 5 5 Requires at least: 3 6 6 Tested up to: 3.5 … … 20 20 2. Upload the folder `linear-tag-cloud` to the `/wp-content/plugins/` directory 21 21 3. Activate the plugin through the 'Plugins' menu in WordPress 22 4. Add the widget in the sidebar areas and configure it 22 4. Add the widget in the sidebar areas and configure it whit max tag number, border color, bars color, link color 23 23 5. Done! 24 24 25 25 == Frequently asked questions == 26 26 27 1. Is it possibile to configure it? 27 = Is it possibile to configure it? = 28 28 Yes, you can configure max number of tags; background, text and border color of the bars 29 30 = Can I change the style? = 31 You can apply whatever CSS rules to the elements of the widget. The main class of the `div` contain the tag cloud is `.linear-tag-cloud`. 29 32 30 33 == Screenshots == 31 34 32 35 1. The control panel in the widget page on Wordpress admin panel 33 2. An example of the application 34 3. An example of the application in the Twenty Twelve default Wordpress Theme36 2. An example of the application as widget in a custom theme 37 3. An example of the application in the Twenty Twelve default Wordpress theme 35 38 36 39 == Changelog == 37 40 38 = 0.1 = 39 * First release 41 = 1.1 = 42 * Some fix 43 * Add HTML5 tags to admin panel 44 45 = 1.0 = 40 46 * Max numbero of tags configurable 41 47 * Background and border color configurable for bars 42 48 * Text color configurable for link in the bars 43 49 50 = 0.1 = 51 * First release 52 44 53 == Upgrade notice == 45 54 -
linear-tag-cloud/trunk/index.php
r652970 r653024 5 5 Description: A tag clob with bars and not dimensions. 6 6 Author: Andrea Rufo 7 Version: 1. 07 Version: 1.1 8 8 Author URI: http://www.orangedropdesign.com/ 9 9 … … 35 35 <p> 36 36 <label for="<?php echo $this->get_field_id( 'number' ); ?>">Max number of tags:</label> 37 <input class="widefat" type=" text" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo $instance['number']; ?>"/>37 <input class="widefat" type="number" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo $instance['number']; ?>" request /> 38 38 </p> 39 39 40 40 <p> 41 41 <label for="<?php echo $this->get_field_id( 'border' ); ?>">Border color:</label> 42 <input class="widefat" type=" text" id="<?php echo $this->get_field_id( 'border' ); ?>" name="<?php echo $this->get_field_name( 'border' ); ?>" value="<?php echo $instance['border']; ?>" />42 <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'border' ); ?>" name="<?php echo $this->get_field_name( 'border' ); ?>" value="<?php echo $instance['border']; ?>" /> 43 43 </p> 44 44 45 45 <p> 46 46 <label for="<?php echo $this->get_field_id( 'background' ); ?>">Background color:</label> 47 <input class="widefat" type=" text" id="<?php echo $this->get_field_id( 'background' ); ?>" name="<?php echo $this->get_field_name( 'background' ); ?>" value="<?php echo $instance['background']; ?>" />47 <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'background' ); ?>" name="<?php echo $this->get_field_name( 'background' ); ?>" value="<?php echo $instance['background']; ?>" /> 48 48 </p> 49 49 50 50 <p> 51 <label for="<?php echo $this->get_field_id( 'color' ); ?>">Text color :</label>52 <input class="widefat" type=" text" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" value="<?php echo $instance['color']; ?>" />51 <label for="<?php echo $this->get_field_id( 'color' ); ?>">Text color (applied on a tag):</label> 52 <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" value="<?php echo $instance['color']; ?>" /> 53 53 </p> 54 54 -
linear-tag-cloud/trunk/readme.txt
r652970 r653024 1 1 === Linear Tag Cloud === 2 2 Contributors: andrearufo 3 Donate link: www.orangedropdesign.com4 Tags: bar chart, tag cloud, percentage, responsive, chart3 Donate link: http://www.orangedropdesign.com 4 Tags: bar chart, tag-cloud, responsive, widget, alternative tag 5 5 Requires at least: 3 6 6 Tested up to: 3.5 … … 20 20 2. Upload the folder `linear-tag-cloud` to the `/wp-content/plugins/` directory 21 21 3. Activate the plugin through the 'Plugins' menu in WordPress 22 4. Add the widget in the sidebar areas and configure it 22 4. Add the widget in the sidebar areas and configure it whit max tag number, border color, bars color, link color 23 23 5. Done! 24 24 … … 28 28 Yes, you can configure max number of tags; background, text and border color of the bars 29 29 30 = Can I change the style? = 31 You can apply whatever CSS rules to the elements of the widget. The main class of the `div` contain the tag cloud is `.linear-tag-cloud`. 32 30 33 == Screenshots == 31 34 32 35 1. The control panel in the widget page on Wordpress admin panel 33 2. An example of the application 34 3. An example of the application in the Twenty Twelve default Wordpress Theme36 2. An example of the application as widget in a custom theme 37 3. An example of the application in the Twenty Twelve default Wordpress theme 35 38 36 39 == Changelog == 37 40 38 = 0.1 = 39 * First release 41 = 1.1 = 42 * Some fix 43 * Add HTML5 tags to admin panel 44 45 = 1.0 = 40 46 * Max numbero of tags configurable 41 47 * Background and border color configurable for bars 42 48 * Text color configurable for link in the bars 43 49 50 = 0.1 = 51 * First release 52 44 53 == Upgrade notice == 45 54
Note: See TracChangeset
for help on using the changeset viewer.