Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Functions.php came with unexpected t string

A functions.php should be like this:

<?php

function bb_nonce_ays( $action ) {
$title = __( 'bbPress Failure Notice' );
$html .= "t<div id='message' class='updated fade'>nt<p>" . wp_specialchars( bb_explain_nonce( $action ) ) . "</p>nt<p>";
if ( wp_get_referer() )
$html .= "" . __( 'Please try again.' ) . "";
$html .= "</p>nt</div>n";
$html .= "</body>n</html>";
bb_die( $html, $title );
}

?>

Skip to toolbar