How much content does your personal WordPress site host?

This very one has content dating back to October 26th 2006, and currently sports:

  • 1,346 posts
  • 2 pages
  • 5 categories
  • 125 tags
  • 1,906 comments
  • 2,153 locally stored images
  • 77 locally stored videos

How does yours compare? Post in the comments.

PS: not doing this for bragging rights (mine isn’t that old or big), genuinely interested in getting a random data sample through this post, rather than a more structured way of gathering data.

26 thoughts on “How much content does your personal WordPress site host?

  1. Looks like my first post was October 11th 2004. lolwuht.

    And I have….
    537 posts
    19 pages
    23 categories
    537 tags (surprise!)
    3,329 approved comments (4,356 including ones sitting in purgatory queues. Oops.)

    Not so much in the way of stored media, though.

    Like

  2. Because I’d rather write code than manually make the results. :)

    <?php
    
    require_once( 'wp-load.php' );
    
    $data = array(
    	'posts'       => wp_count_posts( 'post' )->publish,
    	'pages'       => wp_count_posts( 'page' )->publish,
    	'categories'  => wp_count_terms( 'category' ),
    	'tags'        => wp_count_terms( 'post_tag' ),
    	'comments'    => wp_count_comments()->approved,
    	'attachments' => wp_count_posts( 'attachment' )->inherit,
    );
    
    $output = "<ul>\n";
    
    foreach ( $data as $label => $value )
    	$output .= "\t<li>" . number_format( $value ). " $label</li>\n";
    
    $output .= '</ul>';
    
    echo '<pre>' . esc_html( $output );
    • 522 posts
    • 57 pages
    • 36 categories
    • 414 tags
    • 8,965 comments
    • 179 attachments

    This is since the current version of my site which was started in 2005. I sadly lost the b2, b2evolution, and previous versions of WordPress-powered blogs.

    Like

  3. If i go with my main personal blog, which is also the oldest:

    3,749 Posts
    6 Pages
    37 Categories
    171 Tags
    7,587 Comments
    48 images (I tended to save them elsewhere)

    Some posts were imported from Before WordPress. The oldest post is from 1998/12/25, but the first WP post was Sunday, January 2, 2005.

    Like

  4. Using Alex’s script:

    485 posts
    27 pages
    226 categories
    28 tags
    2,725 comments
    304 attachments

    My oldest post (imported from a previous blog that was all hand-updated HTML) is from 2004-01-21. My oldest post that was made with WordPress is from 2006-07-27.

    Like

Leave a reply to sillyandrea Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.