Changeset 794
- Timestamp:
- 02/20/05 16:06:18 (3 years ago)
- Files:
-
- post-word-count/branches/wp-1.2x (added)
- post-word-count/branches/wp-1.2x/post-word-count.php (added)
- post-word-count/branches/wp-1.2x/read_me.txt (added)
- post-word-count/branches/wp-1.5 (added)
- post-word-count/branches/wp-1.5/post-word-count.php (added)
- post-word-count/branches/wp-1.5/read_me.txt (added)
- post-word-count/trunk/post-word-count.php (modified) (1 diff)
- post-word-count/trunk/read_me.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
post-word-count/trunk/post-word-count.php
r403 r794 2 2 /* 3 3 Plugin Name: Post Word Count 4 Plugin URI: http:// dev.wp-plugins.org/browser/post-word-count/4 Plugin URI: http://mtdewvirus.com/ 5 5 Description: Outputs the total number of words in all posts. 6 Version: 1.0 16 Version: 1.02 7 7 Author: Nick Momrik 8 8 Author URI: http://mtdewvirus.com/ 9 9 */ 10 10 11 function get_post_word_count() {11 function mdv_post_word_count() { 12 12 global $wpdb; 13 13 $now = gmdate("Y-m-d H:i:s",time()); post-word-count/trunk/read_me.txt
r386 r794 1 1 Instructions: 2 2 Place the function call wherever you want the output to appear. 3 <?php get_post_word_count(); ?>3 <?php mdv_post_word_count(); ?>
