Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MortenAndersen/61768189c3d393fd31f6 to your computer and use it in GitHub Desktop.
Save MortenAndersen/61768189c3d393fd31f6 to your computer and use it in GitHub Desktop.
Wordpress: Check om der findes indhold i the_content
<?php
$content = get_the_content();
if(!empty($content)) { ?>
<div class="content">
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
</div>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment