diff -r 0d9a58d2c515 -r 0d28b7c10758 web/wp-content/themes/thematic/library/extensions/widgets.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/wp-content/themes/thematic/library/extensions/widgets.php Fri Mar 12 13:29:04 2010 +0000 @@ -0,0 +1,101 @@ +'; + return apply_filters('thematic_before_widget', $content); +} + +// CSS markup after the widget +function thematic_after_widget() { + $content = ''; + return apply_filters('thematic_after_widget', $content); +} + +// CSS markup before the widget title +function thematic_before_title() { + $content = "

"; + return apply_filters('thematic_before_title', $content); +} + +// CSS markup after the widget title +function thematic_after_title() { + $content = "

\n"; + return apply_filters('thematic_after_title', $content); +} + +// Widget: Thematic Search +function widget_thematic_search($args) { + extract($args); + if ( empty($title) ) + $title = __('Search', 'thematic'); +?> + + + + + + + + + + + + +

+ + \ No newline at end of file