For some reason I can't get my if-statement to echo out the HTML.
<?php
$my_description = meta('description');
if (!empty($my_description)): echo '<p class="description">'.$my_description.'</p>';
echo '<br>'; ?>
<?php endif; ?>
It only outputs the text, nothing else.
meta('description')
is from a plugin in Wordpress that should output the text I placed in the backend. The above code ONLY outputs the following: Lorem Ipsum...
Update: I would like it to output:
<p class="description">Lorem Ipsum...</p>