Changeset 1095904
- Timestamp:
- 02/21/2015 03:06:22 PM (11 years ago)
- Location:
- network-latest-posts/trunk
- Files:
-
- 3 edited
-
network-latest-posts-widget.php (modified) (1 diff)
-
network-latest-posts.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
network-latest-posts/trunk/network-latest-posts-widget.php
r1095315 r1095904 2 2 /* 3 3 Network Latest Posts Widget 4 Version 3.6. 14 Version 3.6.2 5 5 Author L'Elite 6 6 Author URI http://laelite.info/ -
network-latest-posts/trunk/network-latest-posts.php
r1095315 r1095904 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.6. 16 Version: 3.6.2 7 7 Author: Jose Luis SAYAGO 8 8 Author URI: http://laelite.info/ … … 838 838 'total' => $total, 839 839 'current' => $pag, 840 'type' => 'list' 840 'type' => 'list', 841 'add_args' => true 841 842 )); 842 843 // Close pagination wrapper … … 851 852 <script type="text/javascript" charset="utf-8"> 852 853 //<![CDATA[ 853 jQuery(document).ready(function(){ 854 jQuery(".nlp-instance-'.$instance.' .pagination a").live("click", function(e){ 855 e.preventDefault(); 856 var link = jQuery(this).attr("href"); 857 jQuery(".nlp-instance-'.$instance.' .nlposts-wrapper").html("<style type=\"text/css\">p.loading { text-align:center;margin:0 auto; padding:20px; }</style><p class=\"loading\"><img src=\"'.plugins_url('/img/loader.gif', __FILE__) .'\" /></p>"); 858 jQuery(".nlp-instance-'.$instance.' .nlposts-wrapper").fadeOut("slow",function(){ 859 jQuery(".nlp-instance-'.$instance.' .nlposts-wrapper").load(link+" .nlp-instance-'.$instance.' .nlposts-wrapper > *").fadeIn(3000); 854 jQuery(document).ready(function(){ 855 jQuery(".nlp-instance-'.$instance.' .pagination a").live("click", function(e){ 856 e.preventDefault(); 857 var link = jQuery(this).attr("href"); 858 jQuery(".nlp-instance-'.$instance.' .nlposts-wrapper").html("<style type=\"text/css\">p.loading { text-align:center;margin:0 auto; padding:20px; }</style><p class=\"loading\"><img src=\"'.plugins_url('/img/loader.gif', __FILE__) .'\" /></p>"); 859 jQuery.ajax({ 860 url: link, 861 dataType: "html", 862 success: function(data){ 863 jQuery(".nlp-instance-'.$instance.' .nlposts-wrapper").html( jQuery(data).find(".nlposts-wrapper").html() ).fadeIn(3000); 864 } 865 }); 860 866 }); 861 862 867 }); 863 });864 868 //]]> 865 </script>'; 869 </script> 870 '; 866 871 // Close content box 867 872 echo $html_tags['content_c']; -
network-latest-posts/trunk/readme.txt
r1095315 r1095904 5 5 Requires at least: 3.0 6 6 Tested up to: 4.1.1 7 Stable tag: 3.6. 17 Stable tag: 3.6.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) … … 149 149 == Changelog == 150 150 151 = 3.6.2 = 152 * Pagination fixed, improved jQuery function to fix and speed up paginated results. 153 151 154 = 3.6.1 = 152 155 * Improved widget class security for compatibility with certain PHP configurations.
Note: See TracChangeset
for help on using the changeset viewer.