Plugin Directory

Changeset 724108


Ignore:
Timestamp:
06/07/2013 06:01:52 PM (13 years ago)
Author:
jjunyent
Message:

typo fixing

Location:
custom-tags-lists/trunk
Files:
6 added
3 edited

Legend:

Unmodified
Added
Removed
  • custom-tags-lists/trunk

    • Property svn:ignore set to
      deploy.sh
      README.md
      .git
      .gitignore
  • custom-tags-lists/trunk/customtagslist.php

    r25642 r724108  
    44Plugin URI: http://www.junyent.org/blog/2006/05/20/around-this-date-in-the-past-wordpress-widget/
    55Description:  It allows to display highly customizable tags lists.
    6 Version: 0.1
     6Version: 0.2
    77Author: Joan Junyent Tarrida
    88Contributors: jjunyent
     
    6666
    6767
    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
    7171
    7272?>
  • custom-tags-lists/trunk/readme.txt

    r25642 r724108  
    44Author URI: http://junyent.org/
    55Contributors: jjunyent
    6 Donate link: http://junyent.org/blog/my-code
    7 Plugin URI: http://wordpress.org/extend/plugins/custom-tags-list/
    8 Version: 0.1
     6Donate link: http://projectes.junyent.org/
     7Plugin URI: http://projectes.junyent.org/custom-tags-list/
     8Version: 0.2
    99Tags: tags
    1010Requires at least: 2.3
    11 Tested up to: 2.3
    12 Stable tag: 0.1
     11Tested up to: 3.6
     12Stable tag: 0.2
    1313
    1414== Description ==
     
    1616[ Notas en castellano en la web ]  [  Notes en català a la web ]
    1717
    18 It allows to display highly customizable tags lists.
     18It 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!
    1919
     20=== Usage ===
     21
     22Place 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
     33You 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.
    2045
    2146== Installation ==
     
    3560None yet
    3661
    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      
    5762
    5863   
    5964== License ==
    6065   
    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
     66This 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
    6367
    6468
    6569== Changelog ==
    6670v0.1 = Initial release
     71v.0.2 = Metadata update
    6772
    6873
     
    7075
    7176This 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 ]
    7479
    7580Thanks to Mark Jaquith and Christine Davis for writing their plugins.
    7681
     82Image credits for the plugin header: http://www.flickr.com/photos/sheeprus/7123952917/
    7783
    78 == ToDo ==
    79 
    80 Nothing else planed yet.
Note: See TracChangeset for help on using the changeset viewer.