Hello.
How i can use wp_list_categories() function with custom style.
In example. I can use get_links() function with custom style like below:
<?php get_links('-1', '<li><span>', '</span></li>', '', '', 'rand', '', '', '7'); ?>
Hello.
How i can use wp_list_categories() function with custom style.
In example. I can use get_links() function with custom style like below:
<?php get_links('-1', '<li><span>', '</span></li>', '', '', 'rand', '', '', '7'); ?>
If my memory serves me right, list items of this generated list have the class "cat-item". So you can style it in your style.css.
For the rest, read the codex.
Dude i just want to insert <span></span> tag in to <li></li> tag. Like above example. If i rewrite example:
<li><span><a></a></span></li>
This topic has been closed to new replies.