Changeset 724108
- Timestamp:
- 06/07/2013 06:01:52 PM (13 years ago)
- Location:
- custom-tags-lists/trunk
- Files:
-
- 6 added
- 3 edited
-
. (modified) (1 prop)
-
assets (added)
-
assets/7123952917_c80235ab42_b.jpg (added)
-
assets/banner-1544x500.png (added)
-
assets/banner-772x250.png (added)
-
assets/ctl-banner-750x250.png (added)
-
assets/ctl-banner-870x250.png (added)
-
customtagslist.php (modified) (2 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-tags-lists/trunk
-
Property
svn:ignore
set to
deploy.sh
README.md
.git
.gitignore
-
Property
svn:ignore
set to
-
custom-tags-lists/trunk/customtagslist.php
r25642 r724108 4 4 Plugin URI: http://www.junyent.org/blog/2006/05/20/around-this-date-in-the-past-wordpress-widget/ 5 5 Description: It allows to display highly customizable tags lists. 6 Version: 0. 16 Version: 0.2 7 7 Author: Joan Junyent Tarrida 8 8 Contributors: jjunyent … … 66 66 67 67 68 /* Examples of custom functions. Uncoment to make use of the ready-to-use examples 69 include ("examples.php");70 */ 68 /* Examples of custom functions. Uncoment to make use of the ready-to-use examples */ 69 // include ("./examples.php"); 70 71 71 72 72 ?> -
custom-tags-lists/trunk/readme.txt
r25642 r724108 4 4 Author URI: http://junyent.org/ 5 5 Contributors: jjunyent 6 Donate link: http:// junyent.org/blog/my-code7 Plugin URI: http:// wordpress.org/extend/plugins/custom-tags-list/8 Version: 0. 16 Donate link: http://projectes.junyent.org/ 7 Plugin URI: http://projectes.junyent.org/custom-tags-list/ 8 Version: 0.2 9 9 Tags: tags 10 10 Requires at least: 2.3 11 Tested up to: 2.312 Stable tag: 0. 111 Tested up to: 3.6 12 Stable tag: 0.2 13 13 14 14 == Description == … … 16 16 [ Notas en castellano en la web ] [ Notes en català a la web ] 17 17 18 It allows to display highly customizable tags lists. 18 It allows to display highly customizable tags lists. You can create tags lists linking to anything you want (RSS feeds, twitter hashtags, wordpress.com tags, wikipedia terms, google searches, flickr tags...). Use your tags in a completely new way! 19 19 20 === Usage === 21 22 Place the desired function on your theme wherever you want your tag list to appear. 23 24 ´<?php the_tags_nice(', ' , ' and '); ?>´ 25 Shows a tags list like the regular one but in a nice way. Ex: apples, oranges, grapes and kiwis. 26 27 ´<?php the_tags_rss(', ' , ' and '); ?>´ 28 Shows a tags list with links to the rss feed. 29 30 ´<?php the_tags_external('http://wordpress.com/tag/' , 'Find related posts on Wordpress.com', ' , ' and '); ?>´ 31 Shows a tags list with links to any external social site. 32 33 You can also make use of the examples included uncomenting the line include "("examples.php");" 34 35 ==== Function parameters ==== 36 37 $url = URL to the social webservice you want to link. Defaults to 'http://wordpress.com/tag/'. 38 $title = Title for the link. Defaults to 'Find related posts on Wordpress.com'. 39 $separator = Separator for the tags. Defaults to ' , '. 40 $last_separator = Separator for the last tag. Defaults to ' and '. 41 42 === ToDo === 43 44 Create widgets for the tags lists. 20 45 21 46 == Installation == … … 35 60 None yet 36 61 37 == Usage ==38 39 <?php the_tags_nice(', ' , ' and '); ?>40 Shows a tags list like the regular one but in a nice way. Ex: apples, oranges, grapes and kiwis.41 42 <?php the_tags_rss(', ' , ' and '); ?>43 Shows a tags list with links to the rss feed.44 45 <?php the_tags_external('http://wordpress.com/tag/' , 'Find related posts on Wordpress.com', ' , ' and '); ?>46 Shows a tags list with links to an external social site.47 48 You can also make use of the examples includen uncomenting the line include "("examples.php");"49 50 == Function parameters ==51 52 $url = URL to the social webservice you want to link. Defaults to 'http://wordpress.com/tag/'.53 $title = Title for the link. Defaults to 'Find related posts on Wordpress.com'.54 $separator = Separator for the tags. Defaults to ' , '.55 $last_separator = Separator for the last tag. Defaults to ' and '.56 57 62 58 63 59 64 == License == 60 65 61 This plugin is free software. You can redistribute it and/or modify it under the terms of the GPL License (don't remove credits to author, please) 62 See license.txt for details 66 This plugin is free software. You can redistribute it and/or modify it under the terms of the GPL License (don't remove credits to author, please). See license.txt for details 63 67 64 68 65 69 == Changelog == 66 70 v0.1 = Initial release 71 v.0.2 = Metadata update 67 72 68 73 … … 70 75 71 76 This plugin is based on: 72 - Nice Categories plugin by Mark Jaquith. [http://txfx.net/2004/07/22/wordpress-conversational-categories/ ]73 - Ultimate Tag Warrior by Christine Davis. [http://www.neato.co.nz/ultimate-tag-warrior ]77 - [Nice Categories plugin by Mark Jaquith http://txfx.net/2004/07/22/wordpress-conversational-categories/ ] 78 - [Ultimate Tag Warrior by Christine Davis http://www.neato.co.nz/ultimate-tag-warrior ] 74 79 75 80 Thanks to Mark Jaquith and Christine Davis for writing their plugins. 76 81 82 Image credits for the plugin header: http://www.flickr.com/photos/sheeprus/7123952917/ 77 83 78 == ToDo ==79 80 Nothing else planed yet.
Note: See TracChangeset
for help on using the changeset viewer.