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.

  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.

  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.

  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.

  5. Personal (first post 2002/08/15)
    652 Posts
    6 Pages
    5 Categories
    207 Tags
    476 Comments
    558 Attachments

    Techy (started 2010, but with 25 posts backdated)
    196 Posts
    14 Pages
    5 Categories
    117 Tags
    3 eBooks
    11 Plugins
    15 Hacks
    996 Comments
    516 Attachments

    Fansite has pretty much double all of that ;)

  6. On my local site, which is currently a backlog of imported content from other services (Flickr, Instagram, Twitter), but which will soon be merged into my live site:

    • 10,413 posts
    • 0 pages
    • 5 categories
    • 4,665 tags
    • 0 comments
    • 0 attachments

    But on my real site:

    • 318 posts
    • 37 pages
    • 9 categories
    • 1,130 tags
    • 676 comments
    • 116 attachments

    Oldest post is 2003-04-08, but that’s from when I was running http://www.blosxom.com/. I actually don’t know when my first WP post was, but it was quite a bit later than that.

  7. One Site’s Details (oldest published post: 2009/05/23)

    152 posts
    36 pages
    9 categories
    56 tags
    1,374 comments
    55 attachments

    … and a fun little exercise to flip Alex’s code (thanks!) into a plugin.

  8. On my WordPress.com blog:

    94 posts
    132 comments
    4 pages
    16 categories
    26 tags
    86 images
    2 videos

    On my WordPress.org blog ( where we are two authors ):

    768 posts
    9,666 comments
    7 pages
    12 categories
    1,180 tags
    7,804 images

  9. Alex gets bonus points for using number_format. :)

    • 4,501 posts
    • 22 pages
    • 67 categories
    • 662 tags
    • 43,647 comments
    • 32,456 attachments

    My earliest posts are from March 2002.

  10. My content is spread across five sites, many of which branched off from my personal blog over the years. The oldest post dates back to July 17, 2006, which was imported from Blogger or Vox. Doesn’t count my Livejournal archive or the static sites I used to blog on, which date back to 1999.

    Here are the totals:

    * 488 Posts
    * 22 Pages
    * 27 Categories
    * 1418 Tags
    * 1253 Comments

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s