Skip to content

Instantly share code, notes, and snippets.

@WordPress-Handbuch
Last active January 16, 2019 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WordPress-Handbuch/04c18c6e307bed4e448066345c070867 to your computer and use it in GitHub Desktop.
Save WordPress-Handbuch/04c18c6e307bed4e448066345c070867 to your computer and use it in GitHub Desktop.
Code fragment for ribbon include example
<?php if (get_post_meta(get_the_ID(), 'Ribbon', true) != '') { ?>
<div class="ribbon ribbon-top-right">
<span><?php echo (get_post_meta(get_the_ID(), 'Ribbon', true)); ?></span>
</div>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment