Simple Portfolio allows you to easily manage your portfolio. You can append snippets, youtube and media from the built-in Media Library to projects.
The cool thing is that this plugin doesn't create extra tables in database or do other arbitrary stuff. Simple-portfolio only saves references of media to project meta data. This plugin uses the built in Media Library for uploads and storage.
Simple-portfolio provides a small set of methods that can easily be implemented in your theme. Watch the screencast for an example.
You need to enable permalinks (see settings>permalinks). Change them to something different than 'default'. Now you can define your own slug, for example 'showcase' where you want to list your porfolio projects..
Have you checked the screencast already? And have you studied the API an Usage? If not then don't hesitate to contact me!
See function register_taxonomy_for_object_type on codex
All you have to do is create your own taxonomy and apply it on the simple portfolio post type like this:
<?php
add_action('init', 'theme_init');
function theme_init() {
register_taxonomy('portfolio-brands', 'project', array( 'hierarchical' => true, 'show_ui' => true, 'label' => 'Portfolio Brands'));
register_taxonomy_for_object_type('portfolio-brands', 'portfolio');
}
?>
Requires: 3.3 or higher
Compatible up to: 3.3.2
Last Updated: 2012-4-12
Downloads: 32,675
0 of 1 support threads in the last two months have been resolved.
Got something to say? Need help?