PluginProbe
Code Embed / 1.1
Code Embed v1.1
2.6.4 2.6.3 2.6.2 2.6.1 trunk 1.0 1.1 1.2 1.3 1.4.1 1.5.1 1.6.1 2.0.2 2.1.2 2.2.2 2.3.9 2.4 2.5.1 2.5.2 2.6
← All changes | simple-code-embed.php +3 -3 1.01.1 View file →
@@ -2,9 +2,9 @@
2 2 /*
3 3 Plugin Name: Simple Code Embed
4 4 Plugin URI: http://www.artiss.co.uk/simple-code-embed
5 5 Description: Allows you to embed code into your posts & pages
6 -Version: 1.0
6 +Version: 1.1
7 7 Author: David Artiss
8 8 Author URI: http://www.artiss.co.uk
9 9 */
10 10 add_filter('the_content', 'simple_code_embed');
@@ -14,11 +14,11 @@
14 14 $page=$content;
15 15 $i=1;
16 16 while ($i<6) {
17 17 $code="CODE".$i;
18 - $html=get_post_meta($post->ID,$code,false);
19 - $page=str_replace("%".$code."%",$html[0],$page);
18 + $html=get_post_meta($post->ID,$code,false);
19 + $page=str_replace("%".$code."%",$html[0],$page);
20 20 $i++;
21 21 }
22 22 return $page;
23 23 }
24 24 ?>