All pastes #121545 Raw Edit

Anonymous

public text v1 · immutable
#121545 ·published 2006-08-08 02:39 UTC
rendered paste body
<?php

$countpost = $post->post_content;

	$countpost = preg_replace('/\s+/', ' ', strip_tags($countpost)); // remove white space and html
	$words = ((count(explode(" ",$countpost)) + count(explode(".\r",$countpost)))-1); // count spaces and periods 
	if ($words == 1)
	{
	echo "<p class=\"note\">Post length: ~ $words word</p>";
	}
	else
	{
	echo "<p class=\"note\">Post length: ~ $words words</p>";
	}
?>