Bootleg Management with WordPress?
September 16, 2007 8:24 PM Subscribe
WordPressFilter: Can I do something like
this site with WordPress?
I'm the webmaster for Booji Boy's Basement, a Devo bootleg trading site. Right now, everything that is done on the site is handled through 100% static HTML pages. I tried coding a database-driven version of the site in PHP and MySQL, but my code-fu is weak. This is one reason why I no longer study Computer Science... anyway...
I realize that WordPress might be able to let me have all the functionality I need without the need for a lot of coding. I have some technical questions about how to go about it.
I know WordPress has support for custom fields, but would it be possible to have those custom fields visible at all times on the new post page? If I, or my co-conspirator Alex want to add a new disc to the collection, I would want the various fields that need to be filled in (Tracklist, Rating, Description, etc.) to be visible.
How would I sort by the disc identifier? (A001, S001, I001, etc.) Should that be a separate custom field?
Also, I have NO clue how to handle the DVD screenshots.
If you have any suggestions, or even better, an off-the-shelf thing I could use to do this, please let me know. It's already become insanely unwieldy to deal with all the HTML... I'm lost!
posted by SansPoint to computers & internet (8 answers total)
lets take custom fields. you fill these things out, and they will appear hardcoded as variables somewhere in wordpress's php/html. you can add html and css to style how this information is presented with almost no limitation.
as for images. lets say you have a blank field, lets call it image address. you want to be able to type in: "01.jpg". that information gets plugged into a variable, say $ImageAddress, somewhere in the code. you go into that code, and where it says $ImageAddress, you add text before and after, so it becomes [img src=/www/blog/images/"$ImageAddress" /]. voila, a simple text field turns into a way for you to plug in images. add [div class="imageAddress"] and [/div] around that in turn, and you can style the container that that image goes into to be a constant size, have a certain border, hide overflow, etc.
the whole point of adding custom fields is to have them visible at the same time. whether wordpress allows sorting by custom field, i'm not so sure about.
posted by phaedon at 8:44 PM on September 16, 2007