| 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.0 |
| 7 |
Author: David Artiss |
| 8 |
Author URI: http://www.artiss.co.uk |
| 9 |
*/ |
| 10 |
add_filter('the_content', 'simple_code_embed'); |
| 11 |
|
| 12 |
function simple_code_embed($content) { |
| 13 |
global $post; |
| 14 |
$page=$content; |
| 15 |
$i=1; |
| 16 |
while ($i<6) { |
| 17 |
$code="CODE".$i; |
| 18 |
$html=get_post_meta($post->ID,$code,false); |
| 19 |
$page=str_replace("%".$code."%",$html[0],$page); |
| 20 |
$i++; |
| 21 |
} |
| 22 |
return $page; |
| 23 |
} |
| 24 |
?> |