Is it possible to combine specific commands from PHP with styles? I display data via following command:
echo esc_html( $text )
How is it possible to display the data like a headline <h3> tag?
I tried to simply add it, but that does not work:
'<h3>' . echo esc_html( $text ) . '</h3>';
Any ideas?
echo '<h3>' . esc_html( $text ) . '</h3>';