Changeset 794

Show
Ignore:
Timestamp:
02/20/05 16:06:18 (3 years ago)
Author:
MtDewVirus
Message:

Updating for WP 1.5

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • post-word-count/trunk/post-word-count.php

    r403 r794  
    22/* 
    33Plugin Name: Post Word Count 
    4 Plugin URI: http://dev.wp-plugins.org/browser/post-word-count
     4Plugin URI: http://mtdewvirus.com
    55Description: Outputs the total number of words in all posts. 
    6 Version: 1.01 
     6Version: 1.02 
    77Author: Nick Momrik 
    88Author URI: http://mtdewvirus.com/ 
    99*/ 
    1010 
    11 function get_post_word_count() { 
     11function mdv_post_word_count() { 
    1212    global $wpdb; 
    1313      $now = gmdate("Y-m-d H:i:s",time()); 
  • post-word-count/trunk/read_me.txt

    r386 r794  
    11Instructions: 
    22Place the function call wherever you want the output to appear. 
    3 <?php get_post_word_count(); ?> 
     3<?php mdv_post_word_count(); ?>