Skip to content

Instantly share code, notes, and snippets.

@nfsarmento
Created July 4, 2023 19:46
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 nfsarmento/41e8fb7ff8e484fbb02a2363d07919d1 to your computer and use it in GitHub Desktop.
Save nfsarmento/41e8fb7ff8e484fbb02a2363d07919d1 to your computer and use it in GitHub Desktop.
Shortcode to show post title truncated
<?php
/**
*
* Shortcode to show post title truncated
*
* [posttitle]
*
*/
function ns_post_title_shortcode(){
return wp_trim_words( get_the_title(), 10 );
}
add_shortcode( 'posttitle', 'ns_post_title_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment