2013-09-22, 23:15:19
(This post was last modified: 2013-09-22, 23:18:19 by mrdragonraaar.)
Another update.
v1.7
* When displaying All Links the links obey the category display options.
* Added sample css. Works with Innovation theme (linkmanager2_links.css). Enabled by default. To disable comment out the last 2 lines of linkmanager2.php. To use enclose links in <div class="linkmanager2"> tags.
* Added single link.
Template tag (get link 3)
or php call
* Added random link (thanks to mtw for code)
Template tag (get random link between 0 and 10)
or php call
v1.7
* When displaying All Links the links obey the category display options.
* Added sample css. Works with Innovation theme (linkmanager2_links.css). Enabled by default. To disable comment out the last 2 lines of linkmanager2.php. To use enclose links in <div class="linkmanager2"> tags.
* Added single link.
Template tag (get link 3)
Code:
(% link:3 %)
Code:
get_link(3);
$link_html = get_link(3, false);
Template tag (get random link between 0 and 10)
Code:
(% randlink:10 %)
Code:
get_randlink(10);
$randlink_html = get_randlink(10, false);