Plugin Directory

Changeset 499488

Timestamp:
02/03/2012 01:59:26 AM (13 years ago)
Author:
johnciacia
Message:

tested up to WP version 3.3.1

Location:
picasso/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • picasso/trunk

    • Property svn:ignore set to
      deploy.sh
      README.md
      .git
      .gitignore
  • picasso/trunk/picasso.php

    r404171 r499488  
    11<?php
    2 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
    32/*
    43Plugin Name: Picsso - WordPress Albums
    5 Plugin URI: http://www.johnciacia.com/propel/
    6 Description: Extend the WordPress gallery be adding support for albums.
    7 Version: 1.1.4
     4Plugin URI: http://www.johnciacia.com/p/
     5Description: Extend the WordPress gallery be adding support albums.
     6Version: 1.1.
    87Author: John Ciacia
    98Author URI: http://www.johnciacia.com
     
    3534 */
    3635add_shortcode('album', 'picasso_album');
    37 add_shortcode('picasso', 'picasso_album');
    3836
    39 function picasso_album($attr) {
     37function picasso_album($att) {
    4038   
    4139    global $post, $wp_locale;
     
    6058        'order'      => 'ASC',
    6159        'orderby'    => 'menu_order ID',
    62         'title'      => 'no',
    6360        'id'         => $post->ID,
    6461        'itemtag'    => 'dl',
     
    139136        $output .= get_the_post_thumbnail($gallery->ID, 'thumbnail');
    140137        $output .= "</a>";
    141         if($title != "no") {
    142             $output .= "<br />";
    143             $output .= get_the_title($gallery->ID);
    144         }
    145138        $output .= "</$icontag>";
    146139        if ($captiontag && trim($attachment->post_excerpt)) {
  • picasso/trunk/readme.txt

    r404171 r499488  
    11=== Picasso - WordPress Albums ===
    2 Contributors: sidewindernet
     2Contributors:
    33Tags: album, gallery
    44Requires at least: 2.9
    5 Tested up to: 3.1.4
    6 Stable tag: 1.1.4
     5Tested up to: 3.
     6Stable tag: 1.1.
    77
    88This plugin allows users to create albums (gallery containers).
Note: See TracChangeset for help on using the changeset viewer.