I am creating themes for wordpress and I am using Pages (via wp_list_pages()) for the navigation. I know how to use css to make wp_list_pages inline and styled the way I want, BUT... what I am trying to do is insert text around the names of the pages.
For example, if the page names are About, Contact, and Services... I want the output to look like {about} {contact} {services} or some such display.
I am familiar with the :before and :after pseudo-elements, but they don't do me much good since IE won't display them. I know that I may have to create my own php script that pulls the information from the database and inserts text that way, but before I start that I want to make sure I'm not just ignorant and missing some easier way to do this.
I'm creating a series of hyper-minimalist text-only theme designs and getting over this little hurdle will help, especially if I want to make them available to others.
Any suggestions?