Skip to content

Instantly share code, notes, and snippets.

@mennwebs
Last active July 24, 2019 14:06
Show Gist options
  • Select an option

  • Save mennwebs/1bfb4f3419d3a8e83c37ed557cb76c4c to your computer and use it in GitHub Desktop.

Select an option

Save mennwebs/1bfb4f3419d3a8e83c37ed557cb76c4c to your computer and use it in GitHub Desktop.
แก้ความยาว Excerpt ของ WordPress (default: 50)
<?php
/**
* Excerpt change from 50
*/
function seed_excerpt_length( $length ) {
return 100;
}
add_filter( 'excerpt_length', 'seed_excerpt_length', 100 );
function seed_excerpt_more( $more ) {
return '...';
}
add_filter( 'excerpt_more', 'seed_excerpt_more' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment