Add a character counter to excerpt metabox
wordpress snippet
Adding this snippet to the functions.php of your wordpress theme will add a character counter to excerpt metabox. Update: Made a small update to a more appropriate hook, thanks Andrew.
snippet : PHPcopy
function excerpt_count_js(){
echo '<script>jQuery(document).ready(function(){
jQuery("#postexcerpt .handlediv").after("<div style=\"position:absolute;top:0px;right:5px;color:#666;\"><small>Excerpt length: </small><input type=\"text\" value=\"0\" maxlength=\"3\" size=\"3\" id=\"excerpt_counter\" readonly=\"\" style=\"background:#fff;\"> <small>character(s).</small></div>");
jQuery("#excerpt_counter").val(jQuery("#excerpt").val().length);
jQuery("#excerpt").keyup( function() {
jQuery("#excerpt_counter").val(jQuery("#excerpt").val().length);
});
});</script>';
}
add_action( 'admin_head-post.php', 'excerpt_count_js');
add_action( 'admin_head-post-new.php', 'excerpt_count_js');
this months featured snippets
- Andrew Biss
- http://wpsnipp.com Kevin Chard
- Myst1010
- http://wpsnipp.com Kevin Chard
- http://www.turnkeyinvestmentproperties.com.au Karl Thew
- http://wpsnipp.com Kevin Chard
- Jani Uusitalo
- http://wpsnipp.com Kevin Chard
- http://www.wisekal.ca Bryce Wisekal
- http://wpsnipp.com Kevin Chard
- http://www.wisekal.ca Bryce Wisekal
- http://wpsnipp.com Kevin Chard
- http://www.wisekal.ca Bryce Wisekal
- http://wpsnipp.com Kevin Chard
- http://twitter.com/EricRasch Eric Rasch
- http://wpsnipp.com Kevin Chard
- Anthony
- http://wpsnipp.com Kevin Chard
- Marxo
- http://wpsnipp.com Kevin Chard
- Marxo
- TL
- http://wpsnipp.com Kevin Chard
- TL
- http://wpsnipp.com Kevin Chard
- TL
- http://www.cikletoyun.com/oyunlar/balon-oyunlari balon patlatma
- http://wpsnipp.com Kevin Chard
- Anonymous
- http://wpsnipp.com Kevin Chard
- http://cudjex.com/ cudjex
- http://wpsnipp.com Kevin Chard





