Plugin Directory

Changeset 648570


Ignore:
Timestamp:
01/06/2013 04:53:35 AM (13 years ago)
Author:
iluminatus
Message:

HTML improvements to simplify visual customization

Location:
single-latest-posts-lite/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • single-latest-posts-lite/trunk/readme.txt

    r639482 r648570  
    55Requires at least: 3.0
    66Tested up to: 3.5
    7 Stable tag: 1.2
     7Stable tag: 1.2.1
    88
    99This plugin allows you to pull all the recent posts from your WordPress blog and display them the way you want
     
    7676== Changelog ==
    7777
     78= 1.2.1 =
     79* HTML improvement to simplify visual customization
     80
    7881= 1.2 =
    7982* Loading jQuery UI libraries included in the WordPress core
     
    107110
    108111= What else is missing from the Lite version? =
    109 Random posts, sorting capabilities, custom thumbnails and custom default stylesheets options.
     112Full post content, random posts, sorting capabilities, custom thumbnails and custom default stylesheets options.
  • single-latest-posts-lite/trunk/single-latest-posts-config.php

    r620293 r648570  
    2121define( 'SLPosts_Root', $slp_root, true );
    2222// Current Version
    23 define( 'SLPosts_Version', '1.0', true );
     23define( 'SLPosts_Version', '1.2.1', true );
    2424// Classes
    2525require_once dirname( __FILE__ ) . '/core/classes/single-latest-posts-widget.php';
  • single-latest-posts-lite/trunk/single-latest-posts.php

    r639482 r648570  
    44Plugin URI: http://wordpress.org/extend/plugins/single-latest-posts-lite/
    55Description: Display the latest posts available in your WordPress blog using functions, shortcodes or widgets.
    6 Version: 1.2
     6Version: 1.2.1
    77Author: L'Elite
    88Author URI: http://laelite.info/
     
    289289                    }
    290290                }
     291                // Caption Wrapper
     292                echo $html_tags['caption_o'];
    291293                // Open title box
    292294                echo $html_tags['title_o'];
     
    362364                    echo $html_tags['meta_fc'];
    363365                }
     366                // Caption Wrapper
     367                echo $html_tags['caption_c'];
    364368                // Close thumbnail item placeholder
    365369                echo $html_tags['thumbnail_ic'];
     
    367371                echo $html_tags['thumbnail_c'];
    368372            } else {
     373                // Caption Wrapper
     374                echo $html_tags['caption_o'];
    369375                // Open title box
    370376                echo $html_tags['title_o'];
     
    440446                    echo $html_tags['meta_fc'];
    441447                }
     448                // Caption Wrapper
     449                echo $html_tags['caption_c'];
    442450            }
    443451            // Close item box
     
    529537                    }
    530538                }
     539                // Caption Wrapper
     540                echo $html_tags['caption_o'];
    531541                // Open title box
    532542                echo $html_tags['title_o'];
     
    603613                    echo $html_tags['meta_fc'];
    604614                }
     615                // Caption Wrapper
     616                echo $html_tags['caption_c'];
    605617                // Close thumbnail item placeholder
    606618                echo $html_tags['thumbnail_ic'];
     
    608620                echo $html_tags['thumbnail_c'];
    609621            } else {
     622                // Caption Wrapper
     623                echo $html_tags['caption_o'];
    610624                // Open title box
    611625                echo $html_tags['title_o'];
     
    682696                    echo $html_tags['meta_fc'];
    683697                }
     698                // Caption Wrapper
     699                echo $html_tags['caption_c'];
    684700            }
    685701            // Close item box
     
    834850                'title_c' => "</h3>",
    835851                'excerpt_o' => "<ul class='slposts-ulist-excerpt'><li>",
    836                 'excerpt_c' => "</li></ul>"
     852                'excerpt_c' => "</li></ul>",
     853                'caption_o' => "<div class='slposts-caption'>",
     854                'caption_c' => "</div>"
    837855            );
    838856            break;
     
    861879                'title_c' => "</h3>",
    862880                'excerpt_o' => "<ul class='slposts-olist-excerpt'><li>",
    863                 'excerpt_c' => "</li></ul>"
     881                'excerpt_c' => "</li></ul>",
     882                'caption_o' => "<div class='slposts-caption'>",
     883                'caption_c' => "</div>"
    864884            );
    865885            break;
     
    888908                'title_c' => "</h3>",
    889909                'excerpt_o' => "<div class='slposts-block-excerpt'><p>",
    890                 'excerpt_c' => "</p></div>"
     910                'excerpt_c' => "</p></div>",
     911                'caption_o' => "<div class='slposts-caption'>",
     912                'caption_c' => "</div>"
    891913            );
    892914            break;
     
    915937                'title_c' => "</h3>",
    916938                'excerpt_o' => "<ul class='slposts-ulist-excerpt'><li>",
    917                 'excerpt_c' => "</li></ul>"
     939                'excerpt_c' => "</li></ul>",
     940                'caption_o' => "<div class='slposts-caption'>",
     941                'caption_c' => "</div>"
    918942            );
    919943            break;
Note: See TracChangeset for help on using the changeset viewer.