Skip to content

Instantly share code, notes, and snippets.

@pixelbart
Last active January 28, 2016 07:08
Show Gist options
  • Save pixelbart/4ea6c7d296c3459c932f to your computer and use it in GitHub Desktop.
Save pixelbart/4ea6c7d296c3459c932f to your computer and use it in GitHub Desktop.
Wortzähler
<?php
/**
* Ein simpler Wortzähler für deine Website
* Ausgabe: <p><?php echo word_counter(); ?></p>
*/
function word_counter() {
return sprintf(
__( '%s Wörter', 'Textdomain' ), // Für Übersetzungen! %s wird ersetzt mit der Wortanzahl
str_word_count( strip_tags( get_post_field( 'post_content', get_the_ID() ) ) )
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment