I have a function...
$post_text .= '<div style="font-size: 15px; color: blueviolet">';
$post_text .= "<br>";
$post_text .= 'Text number 1.';
$post_text .= "<br>";
$post_text .= 'Text number 2.';
$post_text .= "<br>";
$post_text .= 'Text number 3, <a href="urlr">Text number 4.</a>';
$post_text .= '</div>';
echo $post_text;
This works well when used with echo $post_text;, but how do I make this function work with return $post_text; without returning html as a plain text.