Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created March 16, 2022 12:42
Show Gist options
  • Select an option

  • Save wpflames/042b3c6cc3ae31493465fe6db2692e1a to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/042b3c6cc3ae31493465fe6db2692e1a to your computer and use it in GitHub Desktop.
Add custom class to WordPress excerpt
<?php
// =========================================================================
// ADD CLASS TO EXCERPT
// =========================================================================
function add_class_to_excerpt ($post_excerpt) {
$post_excerpt = '<p class="whatever">' . $post_excerpt . '</p>';
return $post_excerpt;
}
add_filter ('get_the_excerpt','add_class_to_excerpt');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment