Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need a little explaining..
#9
The way I'd do this is.

o - install my customfields and pages plugins (shameless plug I know )
o - Add a custom field and call it "image"
o - Create your base page - call it 'portfolio' and leave it blank.
o - Now create each of your pages and make the parent "portfolio"
o - add the following function to your themes functions.php

Code:
function getPortfolio(){
    $subpages=getChildren('portfolio');
    foreach ($subpages as $page){
        $title=returnPageField($page,'title');
$image=returnPageField($page,'image');
        echo '<li>';
        echo "<a href='index.php?id=".$page."'><img src='".$image."' alt='".$title."' /></a><br/>";
        echo "</li>";
    }    
}

o - then in your main template just call "getPortfolio();" where you want to display the list of images....

Hope it helps....

Mike

Plugins are here:
http://get-simple.info/extend/plugin/customfields/22/
http://get-simple.info/extend/plugin/page-caching/65/
My Github Repos: Github
Website: DigiMute
Reply


Messages In This Thread
Need a little explaining.. - by oToom - 2011-03-19, 13:31:46
Need a little explaining.. - by Connie - 2011-03-19, 14:45:33
Need a little explaining.. - by oToom - 2011-03-19, 23:29:15
Need a little explaining.. - by polyfragmented - 2011-03-19, 23:37:48
Need a little explaining.. - by Connie - 2011-03-20, 00:49:41
Need a little explaining.. - by datiswous - 2011-03-21, 10:09:32
Need a little explaining.. - by Connie - 2011-03-21, 17:14:02
Need a little explaining.. - by oToom - 2011-03-22, 09:26:55
Need a little explaining.. - by n00dles101 - 2011-03-22, 09:44:23
Need a little explaining.. - by oToom - 2011-03-22, 10:15:03
Need a little explaining.. - by datiswous - 2011-03-22, 19:13:12
Need a little explaining.. - by Dominic - 2012-02-04, 04:39:59
Need a little explaining.. - by mvlcek - 2012-02-04, 04:47:43
Need a little explaining.. - by Carlos - 2012-02-04, 07:22:22
Need a little explaining.. - by Dominic - 2012-02-05, 01:04:15
Need a little explaining.. - by Carlos - 2012-02-06, 05:51:03



Users browsing this thread: 1 Guest(s)