Skip to content

Instantly share code, notes, and snippets.

@danielkmariam
Created September 3, 2013 14:17
Show Gist options
  • Save danielkmariam/6424546 to your computer and use it in GitHub Desktop.
Save danielkmariam/6424546 to your computer and use it in GitHub Desktop.
<?php $authors = Mage::getResourceModel('wordpress/user_collection') ?>
<?php if (count($authors) > 0): ?>
<ul>
<?php foreach($authors as $author): ?>
<li>
<a href="<?php echo $author->getUrl() ?>"><?php echo $author->getDisplayName() ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment