Changeset 628646
- Timestamp:
- 11/22/2012 11:59:14 AM (13 years ago)
- Location:
- network-latest-posts/trunk
- Files:
-
- 2 edited
-
network-latest-posts.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
network-latest-posts/trunk/network-latest-posts.php
r627873 r628646 4 4 Plugin URI: http://en.8elite.com/network-latest-posts 5 5 Description: Display the latest posts from the blogs in your network using it as a function, shortcode or widget. 6 Version: 3.5. 16 Version: 3.5.2 7 7 Author: L'Elite 8 8 Author URI: http://laelite.info/ … … 694 694 } else { 695 695 // Display post content 696 echo nl2br($field->post_content);696 echo do_shortcode($field->post_content); 697 697 } 698 698 // Close excerpt wrapper … … 750 750 } else { 751 751 // Display post content 752 echo nl2br($field->post_content);752 echo do_shortcode($field->post_content); 753 753 } 754 754 // Close excerpt wrapper … … 914 914 } else { 915 915 // Display post content 916 echo nl2br($field->post_content);916 echo do_shortcode($field->post_content); 917 917 } 918 918 // Close excerpt wrapper … … 970 970 } else { 971 971 // Display post content 972 echo nl2br($field->post_content);972 echo do_shortcode($field->post_content); 973 973 } 974 974 // Close excerpt wrapper -
network-latest-posts/trunk/readme.txt
r627873 r628646 5 5 Requires at least: 3.0 6 6 Tested up to: 3.4.1 7 Stable tag: 3.5. 17 Stable tag: 3.5.2 8 8 9 9 This plugin allows you to pull all the recent posts from the blogs in your WordPress network and display them in your main site (or internal sites) … … 144 144 == Changelog == 145 145 146 = 3.5.2 = 147 * Replacing nl2br by do_shortcode to fix an incompatibility issue with Vipers shortcodes. 148 146 149 = 3.5.1 = 147 150 * Added catch to avoid warnings when NLPosts can't find posts matching your parameters. Now it will display a message letting you know, no posts matching your criteria were found.
Note: See TracChangeset
for help on using the changeset viewer.