• Hello Everyone,

    I am trying to create a custom page called “Audio”. The portfolio plugin is setup to be used to display “users” instead of projects. I’m trying to configure the page to display a list of all portfolio “users” and to the right of them should be a horizontal list of all media files (type audio) that have been uploaded to their portfolio post. The most significant detail about this is that it needs to be separate from single-portfolio.php, but have access to the same variables / keys.

    <?php while (have_posts()) : the_post(); ?>
            <h1>Media</h1>
            <ul>
            <?php foreach (simple_portfolio_media() as $media): ?>
                <li><?php print_r($media); ?></li>
            <?php endforeach; ?>
            </ul>
    <?php endwhile; ?>

    I can’t seem to get this to work at all. And would be interested in hearing if there is a more effective way of doing this.

The topic ‘Simple Portfolio Plugin Help’ is closed to new replies.