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 - Movieheart

Pages: [1]
1
I have two questions this time.

1. I'm looking for a code that can display a random post on my frontpage. I have found some plugins for that. But none where I can decide where the random post shall be displayed.

2. I'm also looking for a plugin that can manage videos on my blog. I have tried the inbuilt function in wordpress but then I only get a link in my post. I want the video to show up in the post.

2
I have tried the code a little bit now but I cant make it work.

I have tried to put in different categories in this code:
Code: [Select]
<?php if (in_category('3')) continue; ?>
What do I have to put inside where it says "3"?

EDIT: Never mind. I made it.

3
This looks like the code I'm looking for right?

Code: [Select]
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

 <!-- If the post is in the category we want to exclude, we simply pass to the next post. -->
 <?php if (in_category('3')) continue; ?>
 
 <div class="post">
 
  <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
 
  <small><?php the_time('F jS, Y'); ?></small>
 
  <div class="entry">
    <?php the_content(); ?>
  </div>

  <p class="postmetadata">Posted in <?php the_category(', '); ?></p>
 </div> <!-- closes the first div box -->

 <?php endwhile; else: ?>
 <p>Sorry, no posts matched your criteria.</p>
 <?php endif; ?>

4
Hi!

I am using wordpress and I'm wondering if it is possible to make two types of lists with recent posts on my front page?
One list with for example recent movie reviews and one for recent trailers.

5
WP-PostRatings / Re: Disable PostRatings in some posts
« on: 31 March 2008, 15:52 »
OK

So what if I have allready typed in the php code and got about 170 ratings. Will those be deleted when i change how i do it?

6
WP-PostRatings / Disable PostRatings in some posts
« on: 31 March 2008, 15:06 »
How do I disable the plugin in some posts?

7
WP-Stats / Re: Showing stats in footer
« on: 19 February 2008, 22:05 »
Sorry for my bad english!

I'm looking for total people who rated yes.

8
WP-Stats / Re: Showing stats in footer
« on: 14 February 2008, 22:13 »
But i'm going to print how many people who have rated in my footer. How am i going to use it with custom fields then?

9
WP-Stats / Re: Showing stats in footer
« on: 13 February 2008, 19:02 »
I'm not looking for a stat that says who has rated a post. Only how many people who have rated a post.

Thanks for the tip about the plugin. Going to check it out later. :)

10
WP-Stats / Re: Showing stats in footer
« on: 13 February 2008, 16:19 »
Thanks! It worked!

Do you know any codes for adding how many who have given a vote in the star rating plugin and how many words that have been writen in the posts?

11
WP-Stats / Re: Showing stats in footer
« on: 12 February 2008, 15:29 »
Try:
Code: [Select]
wp_count_terms('category')

I tried it but i didn't work. It didn't generate anything. Maybe i wrote the code wrong? I wrote it like this:
Code: [Select]
<?php wp_count_terms('category'?>

12
WP-Stats / Re: Showing stats in footer
« on: 11 February 2008, 15:01 »
I lokked there but couldn't find any code for what i am looking for. I tried <?php get_postcats(); ?> for getting how many categories there are on my page, but it returned a list of all categories. Not only a number of how many categories i have.

13
WP-Stats / Showing stats in footer
« on: 10 February 2008, 21:53 »
The thing is that i have installed this plugin to my wordpress and it all works fine with the widget and stats page. But i don't want to display the stats in a widget or on a stats page. I want to display it in my footer. And it works fine that too but there are some stats that doesn't work for me. So i would be great if someone posted the codes for displaying these stats in a footer:

Number of categories
How many who have given a vote in the star rating plugin
And if it is possible. How many words that have been writen in the posts

Pages: [1]