Skip to content

Instantly share code, notes, and snippets.

@i5ar
Last active August 17, 2017 16:37
Show Gist options
  • Save i5ar/3219edabdfa62a0eb11f to your computer and use it in GitHub Desktop.
Save i5ar/3219edabdfa62a0eb11f to your computer and use it in GitHub Desktop.
Get the first 500 characters
<?php
$string = $post->post_content;
$newString = substr($string, 0, 500);
echo $newString;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment