We have started with a lot of users who writes articles for the site. We want now rate every article internally for haveing an overview of the users with the best articles. Does someone know a plugin to rate articles internally, so they will not show up on the site, only in the dashboard of WP.
Thanks,
Tom
My solution to this question would be to add a custom field / metabox to all of your posts where you can select a desired rating from a drop down menu.
I would also then add the internal rating that you assign to post within the posts list screen so you can see at a glance each posts rating instead of having to click “edit” to see whether a post has a rating or not. If a post has no rating then it will list “Not rated”.
I in fact do something very similar on one of my sites and here’s some basic code that will help you achieve that…
Here are the two simple steps.
1) Paste the following into your functions.php file which will create a drop down custom field called Internal Rating (NOTE you can change the values of your drop down menu to suit your purpose, be it descriptive words like in my example or a number based rating);
2) Next you want to add the following code to your functions.php file also, which will show the Rating post column on your Posts list screen;
The great thing about using a custom field to solve this issue is that you can query the data held within your Internal Rating field not only in the back end but also in the front end and although you don’t have a need for it right now, you may in the future wish to query that value somewhere in your front end theme. That ability is there, if the need ever arises.
You could use PollDaddy ratings and just display it to logged in editors, authors, etc.
And if you want to do that only on the admin side you’ll want to create a meta box to display on the post edit screen which you can learn how to do here: add_meta_box()
You have several options but I think a good and easy solution for you would be to add a custom taxonomy.
In functions.php, add this code:
Then you have what you need but this is better than just a linear rating. You’ll be flexible and can find a lot of new ways to use this functionality.