Zen Follower
- Join Date:
- May 2005
- Location:
- Brussels belgium
- Posts:
- 177
- Plugin Contributions:
- 0
Adding "FAQ" into the sitemap ???
How can I put the faq into the sitemap contrib
for the link contrib I have somthing like that: :blush:
/ Added for Link Manager
</ul>
<br/>
<li>Links</li>
<ul>
<?php
$content = "";
for ($i=0, $n=sizeof($links_array); $i<$n; $i++) {
$content .= '<li><a href="' . zen_href_link(FILENAME_LINKS, '', 'NONSSL') . '&lPath';
$content .= '=' . zen_output_string($links_array[$i]['id']) . '"';
$content .= '>' . zen_output_string($links_array[$i]['text'], array('"' => '"', ''' => ''', '<' => '<', '>' => '>')) . '</a></li>';
}
if (BOX_DISPLAY_VIEW_ALL_LINKS == 'true') {
$content .= '<li><a href="' . zen_href_link(FILENAME_LINKS, '', 'NONSSL') . '">' . BOX_INFORMATION_VIEW_ALL_LINKS . '</a></li>';
}
if (BOX_DISPLAY_SUBMIT_LINK == 'true') {
$content .= '<li><a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, '', 'NONSSL') . '">' . BOX_INFORMATION_LINKS_SUBMIT . '</a></li>';
}
echo $content;
?>