Skip to content

Instantly share code, notes, and snippets.

@ajaydsouza
Last active September 3, 2024 16:37
Show Gist options
  • Save ajaydsouza/45547fe3b18e1e0af1dfccdb1ce2cb6b to your computer and use it in GitHub Desktop.
Save ajaydsouza/45547fe3b18e1e0af1dfccdb1ce2cb6b to your computer and use it in GitHub Desktop.
Add styles to Contextual Related Posts output
<?php
function add_classes_to_crp_post_class( $classes ) {
$classes .= ' alignwide';
return $classes;
}
add_filter( 'crp_post_class', 'add_classes_to_crp_post_class' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment