Skip to content

Instantly share code, notes, and snippets.

@dotherightthing
Last active August 15, 2019 06:43
Show Gist options
  • Save dotherightthing/dda7373b7a9f9cddadbf74ede63395bb to your computer and use it in GitHub Desktop.
Save dotherightthing/dda7373b7a9f9cddadbf74ede63395bb to your computer and use it in GitHub Desktop.
[Outputting a raw excerpt] How to remove those pesky paragraph tags. #wordpress

Outputting a raw excerpt

Created: 2017.04.17

How to remove those pesky paragraph tags.

The excerpt doesn't allow any HTML formatting, yet it is usually output wrapped in <p> tags:

Formatted

<?php the_excerpt(); ?>

Result:

<p>My excerpt. </p>

Raw

<?php echo get_the_excerpt(); ?>

Result:

My excerpt.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment