2012-01-31, 01:45:17
SlazZe Wrote:Code:echo '<ul class="subnav"><?php get_i18n_navigation(return_page_slug(),1,99); ?></ul>';
You are echoing the string <?php ... ?> literally instead of calling the function. It should be
Code:
echo '<ul class="subnav">';
get_i18n_navigation(return_page_slug(),1,99);
echo '</ul>';
Code:
?><ul class="subnav"><?php get_i18n_navigation(return_page_slug(),1,99); ?></ul><?php