Display smilies in Sidebar, too?
WordPress converts text emoticons to their image equivilents with a function appropriately named convert_smilies. To get smilies to show up, say, in text widgets, you would need to run the widget text through that convert_smilies function. You do this by adding a filter: <?php add_filter( ‘widget_text’, ‘convert_smilies’ ); Of maybe you wanted to add smilies … Read more