Changeset 648570
- Timestamp:
- 01/06/2013 04:53:35 AM (13 years ago)
- Location:
- single-latest-posts-lite/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (3 diffs)
-
single-latest-posts-config.php (modified) (1 diff)
-
single-latest-posts.php (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
-
single-latest-posts-lite/trunk/readme.txt
r639482 r648570 5 5 Requires at least: 3.0 6 6 Tested up to: 3.5 7 Stable tag: 1.2 7 Stable tag: 1.2.1 8 8 9 9 This plugin allows you to pull all the recent posts from your WordPress blog and display them the way you want … … 76 76 == Changelog == 77 77 78 = 1.2.1 = 79 * HTML improvement to simplify visual customization 80 78 81 = 1.2 = 79 82 * Loading jQuery UI libraries included in the WordPress core … … 107 110 108 111 = What else is missing from the Lite version? = 109 Random posts, sorting capabilities, custom thumbnails and custom default stylesheets options.112 Full 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 21 21 define( 'SLPosts_Root', $slp_root, true ); 22 22 // Current Version 23 define( 'SLPosts_Version', '1. 0', true );23 define( 'SLPosts_Version', '1.2.1', true ); 24 24 // Classes 25 25 require_once dirname( __FILE__ ) . '/core/classes/single-latest-posts-widget.php'; -
single-latest-posts-lite/trunk/single-latest-posts.php
r639482 r648570 4 4 Plugin URI: http://wordpress.org/extend/plugins/single-latest-posts-lite/ 5 5 Description: Display the latest posts available in your WordPress blog using functions, shortcodes or widgets. 6 Version: 1.2 6 Version: 1.2.1 7 7 Author: L'Elite 8 8 Author URI: http://laelite.info/ … … 289 289 } 290 290 } 291 // Caption Wrapper 292 echo $html_tags['caption_o']; 291 293 // Open title box 292 294 echo $html_tags['title_o']; … … 362 364 echo $html_tags['meta_fc']; 363 365 } 366 // Caption Wrapper 367 echo $html_tags['caption_c']; 364 368 // Close thumbnail item placeholder 365 369 echo $html_tags['thumbnail_ic']; … … 367 371 echo $html_tags['thumbnail_c']; 368 372 } else { 373 // Caption Wrapper 374 echo $html_tags['caption_o']; 369 375 // Open title box 370 376 echo $html_tags['title_o']; … … 440 446 echo $html_tags['meta_fc']; 441 447 } 448 // Caption Wrapper 449 echo $html_tags['caption_c']; 442 450 } 443 451 // Close item box … … 529 537 } 530 538 } 539 // Caption Wrapper 540 echo $html_tags['caption_o']; 531 541 // Open title box 532 542 echo $html_tags['title_o']; … … 603 613 echo $html_tags['meta_fc']; 604 614 } 615 // Caption Wrapper 616 echo $html_tags['caption_c']; 605 617 // Close thumbnail item placeholder 606 618 echo $html_tags['thumbnail_ic']; … … 608 620 echo $html_tags['thumbnail_c']; 609 621 } else { 622 // Caption Wrapper 623 echo $html_tags['caption_o']; 610 624 // Open title box 611 625 echo $html_tags['title_o']; … … 682 696 echo $html_tags['meta_fc']; 683 697 } 698 // Caption Wrapper 699 echo $html_tags['caption_c']; 684 700 } 685 701 // Close item box … … 834 850 'title_c' => "</h3>", 835 851 '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>" 837 855 ); 838 856 break; … … 861 879 'title_c' => "</h3>", 862 880 '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>" 864 884 ); 865 885 break; … … 888 908 'title_c' => "</h3>", 889 909 '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>" 891 913 ); 892 914 break; … … 915 937 'title_c' => "</h3>", 916 938 '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>" 918 942 ); 919 943 break;
Note: See TracChangeset
for help on using the changeset viewer.