bbp_encode_callback( array $matches = array() )

Callback to encode the tags in topic or reply content

Description

Parameters

$matches

(Optional)

Default value: array()

Return

(string)

Source

File: bp-forums/common/formatting.php

229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
function bbp_encode_callback( $matches = array() ) {
 
    // Trim inline code, not pre blocks (to prevent removing indentation)
    if ( "`" === $matches[1] ) {
        $content = trim( $matches[2] );
    } else {
        $content = $matches[2];
    }
 
    // Do some replacing
    $content = htmlspecialchars( $content, ENT_QUOTES );
    $content = str_replace( array( "\r\n", "\r" ), "\n", $content );
    $content = preg_replace( "|\n\n\n+|", "\n\n", $content );
    $content = str_replace( '&', '&', $content );
    $content = str_replace( '<''<'$content );
    $content = str_replace( '>''>'$content );
 
    // Wrap in code tags
    $content = '<code>' . $content . '</code>';
 
    // Wrap blocks in pre tags
    if ( "`" !== $matches[1] ) {
        $content = "\n<pre>" . $content . "</pre>\n";
    }
 
    return $content;
}

Changelog

Changelog
Version Description
bbPress (r4641) Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.