Notifications
Clear all
Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the gVectors community!
Merry Christmas and Happy Holidays! 🎄
22/05/2016 10:26 am
Hi lph
put this code in your current active theme's function.php file:
function wpdiscuz_display_php($comment){
$comment = preg_replace_callback('|\[php\](.*?)\[\/php\]|is', 'wpdiscuz_php_code', $comment);
return $comment;
}
function wpdiscuz_php_code($match){
return '<br/><pre><p style="text-align:right;border-bottom:1px solid #ddd; padding:5px 2px; margin:0px; color:#ccc;">| PHP CODE |</p>'.str_replace(array('>', '<'),array('>','<'),$match[1]).'</pre><br/>';
}
add_filter( 'comment_text', 'wpdiscuz_display_php' );

