Changeset 639691
- Timestamp:
- 12/15/2012 02:25:34 PM (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
r628646 r639691 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. 26 Version: 3.5.3 7 7 Author: L'Elite 8 8 Author URI: http://laelite.info/ … … 694 694 } else { 695 695 // Display post content 696 echo do_shortcode($field->post_content);696 echo nl2br( do_shortcode( $field->post_content ) ); 697 697 } 698 698 // Close excerpt wrapper … … 750 750 } else { 751 751 // Display post content 752 echo do_shortcode($field->post_content);752 echo nl2br( do_shortcode( $field->post_content ) ); 753 753 } 754 754 // Close excerpt wrapper … … 914 914 } else { 915 915 // Display post content 916 echo do_shortcode($field->post_content);916 echo nl2br( do_shortcode( $field->post_content ) ); 917 917 } 918 918 // Close excerpt wrapper … … 970 970 } else { 971 971 // Display post content 972 echo do_shortcode($field->post_content);972 echo nl2br( do_shortcode( $field->post_content ) ); 973 973 } 974 974 // Close excerpt wrapper -
network-latest-posts/trunk/readme.txt
r628646 r639691 4 4 Tags: recent posts, shortcode, widget, network, latest posts 5 5 Requires at least: 3.0 6 Tested up to: 3. 4.17 Stable tag: 3.5. 26 Tested up to: 3.5 7 Stable tag: 3.5.3 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.3 = 147 * Fixing line returns when using display_content parameter. Mixing nl2br and do_shortcode to do the job. 148 146 149 = 3.5.2 = 147 150 * Replacing nl2br by do_shortcode to fix an incompatibility issue with Vipers shortcodes.
Note: See TracChangeset
for help on using the changeset viewer.