how can I show the categories inline in a widget?? I already tried using the wp function wp_list_categories (‘style = none’) and using the php function str_replace to replace the tags br but without success.
Thanks
1 comment
Comments are closed.
how can I show the categories inline in a widget?? I already tried using the wp function wp_list_categories (‘style = none’) and using the php function str_replace to replace the tags br but without success.
Thanks
Comments are closed.
wp_list_categories ('style = none')
willecho
its content as it goes. It won’t pass back string that you can replace. You need to use thewp_list_categories
filter to strip the<br />
tags.