• Resolved redone975

    (@redone975)


    Is there any way to expand this plugin to allow for multiple instances of this plugin within a page?

    For example, one instance would display related pages (only). While other instances would display related custom post types such as “Whitepapers”, “Case Studies”, etc

    This way I would have more control of their front-end display instead of lumping them into one related information area.

    http://wordpress.org/extend/plugins/related-links/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter redone975

    (@redone975)

    I create a quick mockup to demonstrate the idea… In this scenario, it shows an instance for related Pages and one for a custom post type called “Whitepapers”

    http://swept.co/_dev/related-link-expanded.png

    Thread Starter redone975

    (@redone975)

    This is what I was looking for:

    <?php $related_links = get_related_links('page'); ?>
    <ul>
        <?php foreach ($related_links as $link): ?>
            <li><a href="<?php echo $link['url']; ?>"><?php echo $link['type']; ?>: <?php echo $link['title']; ?></a></li>
        <?php endforeach; ?>
    </ul>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Multiple instances?’ is closed to new replies.