unscd045
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Formatting Links/Pages/Archives/etc?Hmm, I’d think that that would be in wp-template-post.php (where I modded _page_level_out) but I couldn’t find any reference to <li id=”pagenav”>… maybe someone who actually knows something about WordPress could answer you. 😀
Forum: Themes and Templates
In reply to: Formatting Links/Pages/Archives/etc?Thanks, rosco47! That was perfect… _page_level_out was exactly the function that was inserting the evil
<li>tags. By chance, do you know what function does the same for the archives links?Forum: Themes and Templates
In reply to: Formatting Links/Pages/Archives/etc?Thanks again for the help… the Template Tags page on the wiki is quite helpful. I’ve run into another problem, though. The wiki says that
<ul>
<?php wp_list_pages('title_li=');Â ?>
</ul>Displays no heading for list, and list is not wrapped in <li><ul>, </ul></li> tags. (Note the absence of any space after the = sign.)But when I do this, it still displays them in list format. Is there something that I’m missing, or do I just need to edit the WP code itself?
Forum: Themes and Templates
In reply to: Formatting Links/Pages/Archives/etc?Thanks for the help – I’ll take a look at those links, but I may actually end up using CSS, at least for the template tags. Yep, I am being backward, but oddly enough I prefer HTML to complicating things with CSS, just because of the bad habits browsers have in interpreting layout CSS differently. It’s definitely necessary sometimes, though.