Accents Problem
-
I have a problem to customize my sidebar. I used the wp_list_pages function to show the pages, and for the titles in bold the title_li parameter:
<?php wp_list_pages_pres('title_li=<h2>Title<h2>' ); ?>
The problem is i write in french and have to put accents. If i put the accents, or their HTML code, it bugs.
for “Assemblée Générale”, per example:
<?php wp_list_pages_pres('title_li=<h2>Assemblée Générale<h2>' ); ?>
So i arranged it manually in the following way:
<h2>Assemblée Générale<h2>
<?php wp_list_pages_assgen('title_li=<h2></h2>' ); ?>
It works very well in Firefox, but in IE the spaces between the lines become irregular, so i can’t use this solution. Any idea?
- The topic ‘Accents Problem’ is closed to new replies.