PluginProbe
Code Embed / 1.3
Code Embed v1.3
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
simple-embed-code / simple-code-embed.php

simple-code-embed.php in Code Embed 1.3, at simple-code-embed.php

21 lines 543 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: Simple Code Embed
4 Plugin URI: http://www.artiss.co.uk/simple-code-embed
5 Description: Allows you to embed code into your posts & pages
6 Version: 1.3
7 Author: David Artiss
8 Author URI: http://www.artiss.co.uk
9 */
10 add_filter('the_content','simple_code_embed');
11 function simple_code_embed($content) {
12 global $post;
13 $loop=1;
14 while ($loop<21) {
15 $html=get_post_meta($post->ID,"CODE".$loop,false);
16 $content=str_replace("%CODE".$loop."%",$html[0],$content);
17 $loop++;
18 }
19 return $content;
20 }
21 ?>