Created
August 15, 2013 20:19
-
-
Save chrdesigner/6244434 to your computer and use it in GitHub Desktop.
Em "ID-CATEGORIA" adicionar o ID correto da sua galeria de links.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul> | |
| <?php $link = get_bookmarks('category=ID-CATEGORIA&orderby=rating'); foreach ($link as $bmark) { $url = $bmark->link_url; ?> | |
| <li> | |
| <a href="<?php echo $bmark->link_url;?>" title="<?php echo $bmark->link_name;?>." target="<?php echo $bmark->link_target;?>"> | |
| <img src="<?php echo $bmark->link_image;?>" alt="<?php echo $bmark->link_name;?>." title="<?php echo $bmark->link_name;?>." /> | |
| </a> | |
| </li> | |
| <?php }; ?> | |
| </ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment