Skip to content

Instantly share code, notes, and snippets.

@mohiuddin3824
Created April 15, 2018 11:40
Show Gist options
  • Select an option

  • Save mohiuddin3824/c145d25dfeef1034bdf1818fda3ccb45 to your computer and use it in GitHub Desktop.

Select an option

Save mohiuddin3824/c145d25dfeef1034bdf1818fda3ccb45 to your computer and use it in GitHub Desktop.
How to make custom excerpt in WordPress
function read_more($limit){
$post_content = explode(" ", get_the_content());
$less_content = array_slice($post_content, 0, $limit);
echo implode("", $less_content);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment