Skip to content

Instantly share code, notes, and snippets.

@ahmedeshaan
Created November 23, 2019 17:16
Show Gist options
  • Save ahmedeshaan/f7000e114622ff976403eabfa1dcd01f to your computer and use it in GitHub Desktop.
Save ahmedeshaan/f7000e114622ff976403eabfa1dcd01f to your computer and use it in GitHub Desktop.
<?php
function wcs_limit_word_count_in_post_title( $title ) {
return wp_trim_words( $title, 2, '' );
}
add_filter( 'the_title', 'wcs_limit_word_count_in_post_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment