Re: portofolio plugin
You have 2 method to achieve what you need or want.
1) search here:
http://designm.ag/design/plugins-for-portfolio-sites/
2) craft working
Create a category “portfolio”
Add some custom fields to posts who can contain pictures
and that’s it
and something like this i your template
<div class="post" id="post-<?php the_ID(); ?>">
< ?php $image = get_post_meta($post->ID, 'mini', true); ?>
< ?php $url = get_post_meta($post->ID, 'url', true); ?>
<a href="<?php echo $url; ?>" title="< ?php the_title(); ?>"><img src="<?php echo $image; ?/>" alt="< ?php the_title(); ?>" /></a>
</div>