All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ayushsaran

Pages: [1]
1
WP-Stats / Re: Printing Individual Stats
« on: 05 April 2007, 09:43 »
sure

no need for the credit or the link back, its just css styling ;)

appreciate it ;)

2
WP-Stats / Re: Printing Individual Stats
« on: 28 March 2007, 02:19 »
Code: [Select]
<div id="nutinfo">
<h2>Nutrition Info</h2>
<p>Serving Size 1 blog <br />
Servings Per Container 1</p>

<p class="lines"><small>Amount Per Serving</small></p>
<p class="lines"><span><?php get_totalposts(); ?></span>Total Posts</p>
<p class="lines"><span><?php get_totalcomments(); ?></span>Total Comments</p>
<p class="lines" style="border-bottom:5px solid #000;;"><span><?php get_totalcommentposters(); ?></span>Total Commenters</p>
<p class="lines"><span><small>% Daily Value</small></span>&nbsp;</p>
<ul class="lines">
<?php get_postcats(); ?>
</ul>
</div>

3
WP-Stats / Re: Printing Individual Stats
« on: 27 March 2007, 06:17 »


thats why i made the list, im still adding more info to it, but that is what i wanted to style into the sidebar

you can see it in action on www.ayushsaran.com/blog

4
WP-Stats / Printing Individual Stats
« on: 26 March 2007, 22:11 »
Im putting together a cheat sheet for myself on the various stats that can be displayed within the blog once the Wp-Stats plugin is installed

can someone add any more - or correct any of these if i was wrong somewhere

Code: [Select]
<?php get_linkcats(); ?>Returns the Link Categories with # of links as a list
Examples:
Blogroll (7)

Code: [Select]
<?php get_postcats(); ?>Returns the Post Categories with # of posts as a clickable list
Examples:
News (7)
Humor (12)

Code: [Select]
<?php get_authorsstats(); ?>Returns the Author Names with # of posts as a clickable list
Examples:
Editor (6)
Steve (145)

Code: [Select]
<?php get_commentmembersstats(); ?>Returns comment posters names with # of comments as a clickable list
Examples:
John (9)
Steve43d (10)

Code: [Select]
<?php get_totalposts(); ?>Returns Total # of posts in the blog
Examples:
135

Code: [Select]
<?php get_mostcommented(); ?>Returns posts with # of comments as a clickable list - sorted descending
Examples:
10 Reasons to quit Smoking - 9 comments
What toothpaste to buy - 3 comments

Code: [Select]
<?php get_recentcomments(); ?>Returns 10 recent comments with date, time, comment poster and post name as a clickable list
Examples:
20.03.2007 @ 15:30 - John (Weekly posting on Digg)

Code: [Select]
<?php get_recentposts(); ?>Returns 10 recent posts with date ,post name and author as a clickable list
Examples:
20.03.2007 - Post Name Here (Author)

Code: [Select]
<?php get_totalposts(); ?>Returns Total # of pages in the blog
Examples:
9

Code: [Select]
<?php get_totalauthors(); ?>Returns Total # of authors in the blog
Examples:
3

Code: [Select]
<?php get_totalcomments(); ?>Returns Total # of comments in the blog
Examples:
23

Code: [Select]
<?php get_totalcommentposters(); ?>Returns Total # of comment posters in the blog
Examples:
9

Code: [Select]
<?php get_totallinks(); ?>Returns Total # of links in the sidebar link list
Examples:
7

Code: [Select]
<?php get_authorsstats(); ?>Returns author names with # of comments as a clickable list
Examples:
John (9)
Steve43d (10)


5
WP-Stats / Re: display stats outside the stats page
« on: 26 March 2007, 09:49 »
perfect

thanks a million

6
WP-Stats / Re: display stats outside the stats page
« on: 26 March 2007, 04:22 »
within wordpress but on a page other than the stats page

id like to put it in the footer and have it show throughout the website

7
WP-Stats / display stats outside the stats page
« on: 26 March 2007, 02:57 »
Im trying to display a few stats on the main page

probably in my footer

all i need is total posts, comments, pages, categories, tags [ultimate tag warrior]

is there a way to call these stats outside the blog/stats/ page

thanks


wp 2.1.2 - latest stats plugin

Pages: [1]