Changeset 398882
- Timestamp:
- 06/19/2011 01:18:03 PM (15 years ago)
- Location:
- blog-in-blog
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.7 (copied) (copied from blog-in-blog/trunk)
-
tags/1.0.7/blog-in-blog.php (modified) (3 diffs)
-
tags/1.0.7/readme.txt (modified) (2 diffs)
-
trunk/blog-in-blog.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blog-in-blog/tags/1.0.7/blog-in-blog.php
r398738 r398882 5 5 Plugin URI: http://informationtakesover.co.uk/blog-in-blog-wordpress-plugin/ 6 6 Description: Create a blog within a blog using a category, post_type or tag. This plugin basically shows selected posts on a page using shortcodes. 7 Version: 1.0. 67 Version: 1.0.7 8 8 Author: Tim Hodson 9 9 Author URI: http://timhodson.com … … 33 33 34 34 if (!defined('BIB_VERSION')) 35 define('BIB_VERSION', '1.0. 6');35 define('BIB_VERSION', '1.0.7'); 36 36 37 37 // Pre-2.6 compatibility … … 274 274 $params['offset'] = $blog_in_blog_opts['offset']; 275 275 $params['numberposts'] = $blog_in_blog_opts['num']; 276 277 // get the posts. 278 $postslist = get_posts($params); 279 276 280 }else{ // for single posts 277 281 $postslist[0] = wp_get_single_post($blog_in_blog_opts['post_id']); 278 282 $blog_in_blog_opts['pagination'] = 'off'; 279 283 } 280 281 // get the posts.282 $postslist = get_posts($params);283 284 284 285 if ($blog_in_blog_opts['bib_debug']) { -
blog-in-blog/tags/1.0.7/readme.txt
r398738 r398882 5 5 Requires at least: 3.0 6 6 Tested up to: 3.1 7 Stable tag: 1.0. 67 Stable tag: 1.0.7 8 8 9 9 Create multiple blogs within a blog using a category. This plugin shows posts from a category on any page you like using shortcodes. … … 191 191 == Changelog == 192 192 193 = 1.0.7 = 194 195 * Fixed: issues with single post shortcodes. 196 193 197 = 1.0.6 = 194 198 -
blog-in-blog/trunk/blog-in-blog.php
r398738 r398882 5 5 Plugin URI: http://informationtakesover.co.uk/blog-in-blog-wordpress-plugin/ 6 6 Description: Create a blog within a blog using a category, post_type or tag. This plugin basically shows selected posts on a page using shortcodes. 7 Version: 1.0. 67 Version: 1.0.7 8 8 Author: Tim Hodson 9 9 Author URI: http://timhodson.com … … 33 33 34 34 if (!defined('BIB_VERSION')) 35 define('BIB_VERSION', '1.0. 6');35 define('BIB_VERSION', '1.0.7'); 36 36 37 37 // Pre-2.6 compatibility … … 274 274 $params['offset'] = $blog_in_blog_opts['offset']; 275 275 $params['numberposts'] = $blog_in_blog_opts['num']; 276 277 // get the posts. 278 $postslist = get_posts($params); 279 276 280 }else{ // for single posts 277 281 $postslist[0] = wp_get_single_post($blog_in_blog_opts['post_id']); 278 282 $blog_in_blog_opts['pagination'] = 'off'; 279 283 } 280 281 // get the posts.282 $postslist = get_posts($params);283 284 284 285 if ($blog_in_blog_opts['bib_debug']) { -
blog-in-blog/trunk/readme.txt
r398738 r398882 5 5 Requires at least: 3.0 6 6 Tested up to: 3.1 7 Stable tag: 1.0. 67 Stable tag: 1.0.7 8 8 9 9 Create multiple blogs within a blog using a category. This plugin shows posts from a category on any page you like using shortcodes. … … 191 191 == Changelog == 192 192 193 = 1.0.7 = 194 195 * Fixed: issues with single post shortcodes. 196 193 197 = 1.0.6 = 194 198
Note: See TracChangeset
for help on using the changeset viewer.