Custom Widget Classes helps to set different css class or styles for widgets,the css class or styles can show in a dropdown list to be choosed
| Author: | wellwisher (profile at wordpress.org) |
| WordPress version required: | 3.0.0 |
| WordPress version tested: | 3.5.1 |
| Plugin version: | 1.1 |
| Added to WordPress repository: | 22-06-2012 |
| Last updated: | 19-02-2013
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
| Rating, %: | 100 |
| Rated by: | 5 |
| Plugin URI: | http://wp-knowledge.com |
| Total downloads: | 8 542 |
| Active installs: | 500+ |
![]() Click to start download |
|
Custom Widget Classes helps to set different css class or styles for widgets,the css class or styles can show in a dropdown list to be choosed . the list of css classes can be added from backend and also can code with theme.
see the options at settings>>widget classes and add classes.
If you are a theme developer you can add the classes in theme itself add this code
add_filter('cWCdeveloperClasses','widgetclasses');
function widgetclasses(){
$clsses['classes']= array(
array(
'class'=>'with-border',
'desc'=>'With Border'
),
array(
'class'=>'white-bg',
'desc'=>'white background'
)
);
return $clsses;
}
if you want to set a default one for all the newly added widgets,add the default class too as shown below
add_filter('cWCdeveloperClasses','widgetclasses');
function widgetclasses(){
$clsses['classes']=array(
array(
'class'=>'with-border',
'desc'=>'With Border'
),
array(
'class'=>'white-bg',
'desc'=>'white background'
)
);
$clsses['default']=array(
'class'=>'widget',
'desc'=>'Widget'
);
return $clsses;
}
