Skip to content

Instantly share code, notes, and snippets.

@akinayturan
Created February 10, 2015 16:04
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 akinayturan/52a421ec1b5e8b93c5e9 to your computer and use it in GitHub Desktop.
Save akinayturan/52a421ec1b5e8b93c5e9 to your computer and use it in GitHub Desktop.
WP ~ Yazı Uzunluğunu Otomatik Sınırlama
<?php
//WP ~ Yazı Uzunluğunu Sınırlama //epfarki.com
add_filter('excerpt_length', 'my_excerpt_length');
function my_excerpt_length($len) { return 60; }
?>
<?php the_excerpt(get_the_title(). ' yazisinin devamini okuyun &raquo;'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment