Movie Database?
-
I love the way Kottke has his movies sorted (https://www.kottke.org/movies), and was wondering if there is a way to do this with wordpress. Does such a plugin exist?
-
^ I have it working. im using both plugins together! thanks for the tip!
just to bring the original question up again, is there any plugin to do reviews kottke (https://www.kottke.org/movies/) style? his layout really does rock. much props to him.
https://www.seansite.net/my-dvd-collection/ is pretty close to it, but its lacking the essential “movie ratings” by the site. anybody have any other solutions?
thanks.
Ronny.I am running a movie database (pretty new so not many reviews yet) using Structured blogging. check it out.
https://www.justwired.com/?cat=6
I want to write a script which will create an automatic list but that will come later.
I used VideoDB which you can get here (https://www.splitbrain.org/go/videodb) … I modified a skin for it so it will use the Kubrick skin you can see it in action here (https://fauxzen.com/videodb/index.php) I can zip it up if anyone else wants a copy of the skin (of course you will have to edit some of the files to make it work with your site instead of mine)
You don’t even need structured blogging for this. Not really. Here’s some hints on ways to emulate kottke’s quick and dirty reviews:
– use a category called “Movies”. Possibly keep it off the home page.
– for each post in Movies, have a meta field called “rating”. use a number from 1-100.
– have a custom category template for Movies. Could have it query and list ALL posts in the category. The template is stripped-down, basically showing:
the_title meta(“rating”)
the_excerpt– to mimic his colored ratings, simply add a class around the rating, based on the score. something like:
$rating = intval(get_post_meta($postID, $what, false);
if (!$rating )
echo “none”;
else
{
$class = “good”;
if ($rating<40) $class = “bad”;
else if ($rating<75) $class = “okay”;
echo ‘<span class=”‘.$class.'”>’.$rating.'</span>’;
}
… then use CSS to style the span .good as green, span .bad as red, and span .okay as gold/tan…– you’d need a custom single template as well. do another get_the_meta, and echo $rating.”/100″;
… just some thoughts. ??
-d
That’s a pretty nifty idea. I appreciate the stuff you’ve given there as thoughts, but I am still as of yet not comfortable enough with WordPress and PHP…could you possibly actually just make a sample page or soemthing please? How would you go about not including a topic on the front page, and how would you go about showing all the entires on the category page etc.
*bump*
I’m working on making a movie database page just like kottke’s and thanks to davidchait’s advice I’ve gotten one that looks similar and even has the color-coded ratings system. I’m curious if anyone knows how or has any advice on how to sort the posts alphabetically or by meta tag (rating) like kottke does on his site. I understand that his sorted pages are separate pages that probably just recall from the information from database in a different order other than by $postID, but does anyone know the exact functions/database queries to pull information by post title or by meta value?
I could see maybe using an edited version of an archive script, but with the script I use (I think I use Nicer Archives) I can’t figure out how to display the archive options as well as the actual regular posts underneath…
Can I see what you’ve got so far? I tried this out myself, but I can’t get it to work the way I want.
Sure, here is what I have so far:
https://www.guboogi.com/movies/
The movie entries might change because this is an experimental section so the posts aren’t permanent yet. I also haven’t finished the layout and the “sort by rating” doesn’t work either. As it stands, the color behind the rating is color-coded to whether the rating is “bad,” “okay,” or “good.” As you can see, I have a long ways to go, but this is what I have so far. Any input/advice would be appreciated. Thanks.
What plugin are you using for your music on the sidebar guboogi?
I use WP-iTunes. I haven’t upgraded to the latest version, though (I’m still using 1.0) You can get it here: https://www.lucky-33.com/scripts/plugins/wp-itunes
Just so you guys know, I haven’t worked on this for the past few weeks and have since removed the posts on my example page (see above), so you can ignore that link for now.
Anyone know how to modify the layout of Structured Blogging?
nothing of these do what I want… meh. anyone found anything else plugin wise? I think the use of custom fields and tags already lets you do a lot. combine that with a few sidebar php hacks and you’re there…
sidebar stuff I am looking for:
* movie fact box (cast & crew,etc.) when viewing the review
* “write review” dashboard option that adds a defined set of custom tags and gets the values from imdb, i.e. you enter the movie name and all custom fields you want to be filled get the data from there (director, year, runtime, studio, etc…)
* browse movies/reviews options – already in part there through tags (UTW). would like to carry this further and offer various browsing options of reviews (kottke is too limited, too here).Hmm, maybe something like this exists? Otherwise I might just as well hack something together myself…
- The topic ‘Movie Database?’ is closed to new replies.