looking to hire someone to do some wordpress coding for a plugin, most of the plugin is done i just need to format the output the plugin creates.

PHP Code: 
$lr_permalink get_permalink($post->ID);

$lr_title get_the_title($post->ID);

$lr_content get_the_content($post->post_content);

    if ( !
is_feed() && !is_page() ) {

        
$content .= '<div align="center" style="border:1px solid #999999;background:#DFFFA5;color:#000000;padding:7px;margin:10px;font-size:11px">

      <div style="float:left;width:40%;text-align:left;color:#000000"><div style="font-size:13px;color:#000000;"><strong>Insert this info in to your forum movie posts!</strong></div>1. <em><strong>Click</strong> inside the codebox</em><br />2. <em><strong>Right-Click then Copy</strong></em><br />3. <em><strong>Paste</strong> the text into your thread</em></div>

      <div style="float:right;width:60%;color:#000000;"><strong>codebox</strong><textarea name="' 
$lr_title '" rows="" cols="" style="width:90%;height:60px;overflow-y:auto;overflow-x:hidden;font-family:arial,times,courier;font-size:10px" readonly="readonly" onclick="this.focus(); this.select();">[url=' $lr_permalink ']' $lr_title '[/url]; ' $lr_content '; </textarea> 
is the code , it gives an output in a code box but still has the <p> and <li> tags which i need removed. i deally i would like the output to create a format that can be posted in to a forum with the correct bbcodes like [*center] [*img]
CrapH Reviewed by CrapH on . wordpress php coder looking to hire someone to do some wordpress coding for a plugin, most of the plugin is done i just need to format the output the plugin creates. $lr_permalink = get_permalink($post->ID); $lr_title = get_the_title($post->ID); $lr_content = get_the_content($post->post_content); if ( !is_feed() && !is_page() ) { Rating: 5