Changeset 218488
- Timestamp:
- 03/16/2010 09:51:18 PM (16 years ago)
- Location:
- blog-in-blog
- Files:
-
- 4 edited
- 10 copied
-
tags/0.9.9 (copied) (copied from blog-in-blog/trunk)
-
tags/0.9.9/bib_post_template.tpl (copied) (copied from blog-in-blog/trunk/bib_post_template.tpl) (1 diff)
-
tags/0.9.9/blog-in-blog-be_BY.mo (copied) (copied from blog-in-blog/trunk/blog-in-blog-be_BY.mo)
-
tags/0.9.9/blog-in-blog-be_BY.po (copied) (copied from blog-in-blog/trunk/blog-in-blog-be_BY.po)
-
tags/0.9.9/blog-in-blog-nl.mo (copied) (copied from blog-in-blog/trunk/blog-in-blog-nl.mo)
-
tags/0.9.9/blog-in-blog-nl.po (copied) (copied from blog-in-blog/trunk/blog-in-blog-nl.po)
-
tags/0.9.9/blog-in-blog.php (copied) (copied from blog-in-blog/trunk/blog-in-blog.php) (2 diffs)
-
tags/0.9.9/blog-in-blog.pot (copied) (copied from blog-in-blog/trunk/blog-in-blog.pot)
-
tags/0.9.9/options.php (copied) (copied from blog-in-blog/trunk/options.php)
-
tags/0.9.9/readme.txt (copied) (copied from blog-in-blog/trunk/readme.txt) (3 diffs)
-
trunk (modified) (1 prop)
-
trunk/bib_post_template.tpl (modified) (1 diff)
-
trunk/blog-in-blog.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blog-in-blog/tags/0.9.9/bib_post_template.tpl
r210980 r218488 1 <!--fragment of html for post template blog-in-blog Version: 0.9. 8-->1 <!--fragment of html for post template blog-in-blog Version: 0.9.9 --> 2 2 <div class="post"> 3 3 <!-- Post Headline --> -
blog-in-blog/tags/0.9.9/blog-in-blog.php
r211020 r218488 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. This plugin basically shows posts in a category on a page using shortcodes. 7 Version: 0.9. 87 Version: 0.9.9 8 8 Author: Tim Hodson 9 9 Author URI: http://timhodson.com … … 117 117 $data['post_author_avatar'] = get_avatar( $post->post_author , $blog_in_blog_opts['bib_avatar_size'] ); 118 118 119 $data['post_content'] = apply_filters('the_content', $post->post_content); 120 121 $data['post_excerpt'] = apply_filters('the_excerpt', bib_process_excerpt($post) ); 122 123 $data['post_permalink'] = apply_filters('the_permalink', get_permalink($post)); 119 #$data['post_content'] = apply_filters('the_content', $post->post_content); 120 $data['post_content'] = $post->post_content; 121 122 #$data['post_excerpt'] = apply_filters('the_excerpt', bib_process_excerpt($post) ); 123 $data['post_excerpt'] = bib_process_excerpt($post) ; 124 125 $data['post_permalink'] = get_permalink($post); 124 126 $data['post_comments'] = bib_process_comments($post->comment_status, $post->comment_count, $data['post_permalink']); 125 127 $data['post_tags'] = bib_get_the_tags($post->ID) ; -
blog-in-blog/tags/0.9.9/readme.txt
r211034 r218488 5 5 Requires at least: 2.7.1 6 6 Tested up to: 2.9.2 7 Stable tag: 0.9. 87 Stable tag: 0.9.9 8 8 9 9 Create a blog within a blog using a category. This plugin basically shows posts in a category on a page using shortcodes. … … 67 67 ** Default is always newest (DESC) first. 68 68 * `template=<your filename>` by default we look in the following locations in the order shown: 69 * *`WP_CONTENT_DIR/uploads/<your filename>`70 * *`WP_CONTENT_DIR/plugins/blog-in-blog/<your filename>`71 * *`WP_CONTENT_DIR/plugins/blog-in-blog/bib_post_template.tpl`69 *1 `WP_CONTENT_DIR/uploads/<your filename>` 70 *1 `WP_CONTENT_DIR/plugins/blog-in-blog/<your filename>` 71 *1 `WP_CONTENT_DIR/plugins/blog-in-blog/bib_post_template.tpl` 72 72 73 73 … … 100 100 101 101 == Changelog == 102 103 = 0.9.9 = 104 Fixed issue causing infinite loop with ither plugins that call `appy_filters()` on `the_content` which will cause shortcode to be re-applied again and again. 102 105 103 106 = 0.9.8 = -
blog-in-blog/trunk
- Property svn:ignore
-
old new 1 1 *.zip 2 all_tags.tpl
-
- Property svn:ignore
-
blog-in-blog/trunk/bib_post_template.tpl
r210980 r218488 1 <!--fragment of html for post template blog-in-blog Version: 0.9. 8-->1 <!--fragment of html for post template blog-in-blog Version: 0.9.9 --> 2 2 <div class="post"> 3 3 <!-- Post Headline --> -
blog-in-blog/trunk/blog-in-blog.php
r211020 r218488 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. This plugin basically shows posts in a category on a page using shortcodes. 7 Version: 0.9. 87 Version: 0.9.9 8 8 Author: Tim Hodson 9 9 Author URI: http://timhodson.com … … 117 117 $data['post_author_avatar'] = get_avatar( $post->post_author , $blog_in_blog_opts['bib_avatar_size'] ); 118 118 119 $data['post_content'] = apply_filters('the_content', $post->post_content); 120 121 $data['post_excerpt'] = apply_filters('the_excerpt', bib_process_excerpt($post) ); 122 123 $data['post_permalink'] = apply_filters('the_permalink', get_permalink($post)); 119 #$data['post_content'] = apply_filters('the_content', $post->post_content); 120 $data['post_content'] = $post->post_content; 121 122 #$data['post_excerpt'] = apply_filters('the_excerpt', bib_process_excerpt($post) ); 123 $data['post_excerpt'] = bib_process_excerpt($post) ; 124 125 $data['post_permalink'] = get_permalink($post); 124 126 $data['post_comments'] = bib_process_comments($post->comment_status, $post->comment_count, $data['post_permalink']); 125 127 $data['post_tags'] = bib_get_the_tags($post->ID) ; -
blog-in-blog/trunk/readme.txt
r211034 r218488 5 5 Requires at least: 2.7.1 6 6 Tested up to: 2.9.2 7 Stable tag: 0.9. 87 Stable tag: 0.9.9 8 8 9 9 Create a blog within a blog using a category. This plugin basically shows posts in a category on a page using shortcodes. … … 67 67 ** Default is always newest (DESC) first. 68 68 * `template=<your filename>` by default we look in the following locations in the order shown: 69 * *`WP_CONTENT_DIR/uploads/<your filename>`70 * *`WP_CONTENT_DIR/plugins/blog-in-blog/<your filename>`71 * *`WP_CONTENT_DIR/plugins/blog-in-blog/bib_post_template.tpl`69 *1 `WP_CONTENT_DIR/uploads/<your filename>` 70 *1 `WP_CONTENT_DIR/plugins/blog-in-blog/<your filename>` 71 *1 `WP_CONTENT_DIR/plugins/blog-in-blog/bib_post_template.tpl` 72 72 73 73 … … 100 100 101 101 == Changelog == 102 103 = 0.9.9 = 104 Fixed issue causing infinite loop with ither plugins that call `appy_filters()` on `the_content` which will cause shortcode to be re-applied again and again. 102 105 103 106 = 0.9.8 =
Note: See TracChangeset
for help on using the changeset viewer.