Skip to content

Instantly share code, notes, and snippets.

@Tsunamijaan
Created January 5, 2019 09:09
Show Gist options
  • Select an option

  • Save Tsunamijaan/807cb030414235e5f2c26d123c651295 to your computer and use it in GitHub Desktop.

Select an option

Save Tsunamijaan/807cb030414235e5f2c26d123c651295 to your computer and use it in GitHub Desktop.
To use the WordPress limit excerpt
function new_excerpt_more( $more )
{
return ' Load More';
}
function custom_excerpt_length( $length )
{
return 500;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 500);
add_filter('excerpt_more', 'new_excerpt_more');
To use:=======
<?php the_excerpt();?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment