WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: easy-widget-columns (Used by 110 domains)

Easy Widget Columns

πŸ‘€ Alexis J. Villegas πŸ“¦ v1.2.4 πŸ”— Plugin Homepage

Easy Widget Columns makes it really easy to arrange your widgets in rows of columns. It works by adding a new β€˜Column width’ select option at the bottom of your widget’s form that allows you to set a width value for each widget.

You can define new rows and sub-rows of widget columns with the β€˜Widget Row’ widget and the β€˜Sub-Row’ widget respectively, allowing you to create complex layouts directly from within your widget area or sidebar.

Genesis Framework users, be sure to check out the Widgetized Page Template plugin, which helps you create full-page widget areas to use as a β€œblank canvas” with Easy Widget Columns.

Works With Most Themes

Easy Widget Columns is optimized for use with the Genesis Framework, but it is not required. It uses the Genesis Framework Column Classes to display your widgets in rows of columns. If your theme already incorporates the Genesis Framework Column Classes, or you want to manually add or edit the CSS, you can choose not to load the CSS under β€˜Settings’ > β€˜Widget Columns’ and rely on your theme’s stylesheet instead. This option is recommended for most Genesis users or those concerned with loading additional assets on their website.

Translation and RTL Ready

The plugin supports RTL layouts and is translation ready.

Filters for Developers

The following filters are available for you to take full control of the plugin on your themes.

  • ewc_include_widgets – This whitelist filter is used to add the width control ONLY to the specified widgets.
  • ewc_exclude_widgets – This blacklist filter is used to remove the width control from the specified widgets.
  • ewc_color_palette – This filter allows you to add a custom color palette to the color picker control in the β€˜Widget Row’ widget.
  • ewc_preset_classes – This filter allows you assign preset CSS classes that display as a checkbox list in the β€˜Widget Row’ widget.
  • ewc_advanced_options – This filter allows you to remove specific or all advanced options from the β€˜Widget Row’ widget.

1. ewc_include_widgets / ewc_exclude_widgets

Both filters accept the widget’s ID base as parameters. Please note that you cannot use both filters at once. The ewc_include_widgets filter will always take precedence over the ewc_exclude_widgets filter and overwrite it.

The examples below demonstrate how you can implement these filters on your theme.

add_filter( 'ewc_include_widgets', 'myprefix_add_ewc_control' );
/**
 * Filter to add the EWC control to specified widgets.
 *
 * @param  array An empty array.
 * @return array An array containing the widget's ID base.
 */
function myprefix_add_ewc_control( $ewc_widgets ) {

    $ewc_widgets = array(
        'meta', // WP Meta widget
        'archives', // WP Archives widget
        'calendar', // WP Calendar widget
        'categories', // WP Categories widget
    );

    return $ewc_widgets;

}

add_filter( 'ewc_exclude_widgets', 'myprefix_remove_ewc_control' );
/**
 * Filter to remove the EWC control from specified widgets.
 *
 * @param  array An empty array.
 * @return array An array containing the widget's ID base.
 */
function myprefix_remove_ewc_control( $ewc_widgets ) {

    $ewc_widgets = array(
        'recent-comments', // WP Recent Comments widget
        'recent-posts', // WP Recent Posts widget
        'rss', // WP RSS widget
        'tag_cloud', // WP Tag Cloud widget
    );

    return $ewc_widgets;

}

2. ewc_color_palette

This filter allows you to add a custom color palette to the color picker control in the β€˜Widget Row’ widget. It accepts an array of hex color values as parameters.

The example below demonstrates how you can implement this filter on your theme.

add_filter( 'ewc_color_palette', 'myprefix_ewc_color_palette' );
/**
 * Filter to edit the color palette in the color picker control.
 *
 * @param  array An empty array.
 * @return array An array containing hex color values.
 */
function myprefix_ewc_color_palette( $color_palette ) {

    $color_palette = array(
        '#252724',
        '#ce6b36',
        '#31284b',
        '#a03327',
        '#3b3e3e',
        '#67b183',
    );

    return $color_palette;

}

3. ewc_preset_classes

This filter allows you assign preset CSS classes that display as a checkbox list in the β€˜Widget Row’ widget.

The following example demonstrates how you can implement this filter on your theme.

add_filter( 'ewc_preset_classes', 'myprefix_preset_classes' );
/**
 * Filter for predefining EWC Widget Row classes.
 *
 * @param  array An empty array.
 * @return array An array containing new values.
 */
function myprefix_preset_classes( $classes ) {

    $classes = array(
        'hero',
        'parallax',
        'slider',
        'content',
    );

    return $classes;

}

4. ewc_advanced_options

This filter allows you to remove specific or all advanced options from the β€˜Widget Row’ widget. This can be useful for limiting design functionality on a client website (decisions, not options).

The following example demonstrates how to completely remove all advanced options.

// Remove all advanced options from the Widget Row widget.
add_filter( 'ewc_advanced_options', '__return_false' );

The example below demonstrates how to disable or enable specific advanced options. The display parameter toggles the advanced option and the active parameter determines if the panel will display open (1) or closed (0) when the Widget Row widget is first added into a widget area.

add_filter( 'ewc_advanced_options', 'myprefix_display_advanced_options' );
/**
 * Filter to remove specific advanced options from the Widget Row widget.
 *
 * @param  array An array containing default values.
 * @return array An array containing new values.
 */
function myprefix_display_advanced_options( $display ) {

    $display = array(
        'ewc_background' => array(
            'display' => true,
            'active' => 1,
        ),
        'ewc_margin' => array(
            'display' => false,
            'active' => 0,
        ),
        'ewc_padding' => array(
            'display' => false,
            'active' => 0,
        ),
        'ewc_class' => array(
            'display' => true,
            'active' => 0,
        ),
    );

    return $display;

}
DomainExposuresHeadersLast Checked
l*t*l*e*d*c*u*.com (WP 6.9.4) βœ… F 2026-04-30 20:52:52
s*n*e*v*l*a*e*o*m*n*t*.org πŸ”“ F 2026-04-30 18:45:21
l*s*m*n*t*s*a*e.com (WP 5.2.21) ⚠️ F 2026-04-30 17:47:04
c*u*t*b*e*e*y.ca (WP 6.9.4) βœ… F 2026-04-30 14:12:05
h*r*o*d.blog (WP 6.9.4) βœ… F 2026-04-30 14:12:05
o*j.judiciary.go.ke (WP 6.8.3) βœ… F 2026-04-30 11:34:05
c*r*a*l*r*i*p*t*h*r.com (WP 6.6.5) βœ… F 2026-04-30 04:53:35
m*n*s*e*i*d*l*s*i*i*u*a*t*.com (WP 6.9.4) βœ… F 2026-04-30 00:01:51
d*g*o*t*n.com βœ… F 2026-04-29 14:16:24
c*c*o*i*t*.com (WP 6.7.5) βœ… F 2026-04-28 21:29:15
i*e*l*i*i*s.eu (WP 6.9.4) βœ… F 2026-04-28 13:41:34
c*-*o*.eu (WP 6.9.4) βœ… F 2026-04-28 13:41:34
i*y*-*a*n*.de (WP 6.6.5) βœ… F 2026-04-28 11:15:30
c*r*s*a*t*r*o*n*h*.com βœ… F 2026-04-27 23:39:55
h*r*o*d.co (WP 6.9.4) βœ… F 2026-04-27 13:25:03
w*y*f*e*e.org βœ… F 2026-04-27 05:13:55
e*b*.ieee-pt.org (WP 6.7.5) βœ… B 2026-04-26 15:28:23
u*f*o*t*o*c*n*e*.com (WP 6.9.4) βœ… F 2026-04-25 01:16:59
s*g*l*e*b*n*-*h.de βœ… F 2026-04-24 09:13:27
n*n*i.no (WP 6.7.2) βœ… F 2026-04-24 05:48:47
h*p*h*a*t*o*e*i*i*t*y.com (WP 6.8.5) βœ… F 2026-04-22 23:12:52
m*s*i*n*n*o*.com (WP 5.8.13) ⚠️ F 2026-04-22 18:47:03
n*k*a*a*.no (WP 6.9.4) βœ… F 2026-04-22 06:06:27
s*b*r*a*a*o*.org βœ… F 2026-04-22 05:36:58
r*s*-*p*s.com βœ… F 2026-04-20 17:50:25
g*o*a*q*e*a*l*s*e*a*t*b*i*.es (WP 6.2.9) ⚠️ F 2026-04-20 17:33:05
s*o*k*x*l.com (WP 6.9.4) βœ… F 2026-04-20 15:11:54
d*v*n*n*s.com (WP 5.6.17) ⚠️ F 2026-04-20 08:48:24
b*r*a*i*n*e*p*i*e*i*c.com (WP 5.8.13) ⚠️ A 2026-04-19 20:37:01
r*z*r*s*o*k.com (WP 6.9.4) βœ… F 2026-04-19 10:06:53
a*o*l*c*r*e*c*n*e*h*.com βœ… F 2026-04-18 23:52:50
i*r*v*i*.com (WP 6.9.4) βœ… F 2026-04-18 21:20:44
h*y*i*o.com (WP 4.9.29) ⚠️ F 2026-04-18 12:03:41
b*u*e*a*t*n*t*t*t*.com (WP 5.5.18) ⚠️ F 2026-04-18 06:49:51
d*l*x*w*n*o*a*d*o*r.com βœ… A 2026-04-18 05:04:15
i*n*e*l*h*y*t*m*.com (WP 6.9.4) βœ… F 2026-04-18 04:50:36
d*l*x*f*m*l*.com βœ… A 2026-04-18 04:47:09
r*s*d*n*i*s*r*x*s.com (WP 6.7.5) βœ… F 2026-04-18 03:00:21
a*n*g*e*e*k*.com (WP 6.9.4) βœ… F 2026-04-16 23:31:15
o*f*c*r*n*a*i*c.com βœ… F 2026-04-15 20:14:20
s*a*l*i*g*e*i*a*.com (WP 6.9.4) βœ… D 2026-04-15 19:33:13
h*r*o*d*s*a*e*i*e*a*d*.com (WP 6.9.4) βœ… F 2026-04-14 18:06:15
h*r*o*t*e*.com (WP 5.3.21) ⚠️ F 2026-04-14 10:04:08
s*n*a*o*a*.com (WP 6.9.4) βœ… F 2026-04-14 02:09:46
m*r*o*a*i*s.com (WP 6.7.4) πŸ”“ F 2026-04-13 13:34:20
e*h*s*e*.com (WP 6.9.4) βœ… F 2026-04-13 12:28:26
m*r*e*o*d*n*.com πŸ”“ F 2026-04-13 07:37:24
e*p*c*l*l*s.com (WP 6.9.4) βœ… F 2026-04-12 12:02:42
e*k*n*e*p*j*r.com βœ… F 2026-04-12 09:58:45
y*h*r*h*d*n*i*s.com πŸ”“ F 2026-04-12 09:12:28
a*p*n*-*o*g*.com (WP 6.9.4) βœ… F 2026-04-12 03:50:58
n*r*h*e*c*p*t*l.com βœ… D 2026-04-11 23:39:49
n*r*l*a*.com βœ… F 2026-04-11 15:48:16
j*o*l*n*c*s*n*.com (WP 4.9.3) ⚠️ F 2026-04-11 14:36:41
t*n*a*s.com (WP 5.5.18) ⚠️ F 2026-04-11 08:33:52
q*i*t*d*s*a*p*s.com (WP 6.5.8) βœ… F 2026-04-11 07:50:04
b*l*a*i*.fr (WP 6.9.4) βœ… F 2026-04-09 14:25:52
c*e*e*a*r*n*i*n*o.com (WP 6.8.2) βœ… F 2026-04-09 06:38:37
g*o*c*p*o*i*i*y.com (WP 6.2.8) ⚠️ F 2026-04-09 05:27:45
s*n*a*.pt (WP 6.0.5) ⚠️ F 2026-04-09 00:13:42
c*s*b*l*a*a*u*a.eu (WP 6.6.5) βœ… F 2026-04-08 20:43:58
b*u*e*a*t*n*t*t*t*.org (WP 5.5.18) ⚠️ F 2026-04-08 11:45:18
c*u*t*b*e*.com (WP 6.9.4) βœ… F 2026-04-08 04:55:37
c*n*r*b*o*u*n*i*o.com (WP 6.8.5) βœ… F 2026-04-07 23:46:29
l*v*j*f*e*s*n*i*e.com βœ… F 2026-04-06 17:05:44
1*t*p*f*.com βœ… F 2026-04-03 12:12:54
3*m*d*a*o.com (WP 6.9.4) βœ… β€” 2026-03-30 07:05:20
1*t*p*f*i*e*u*n*t*r*.com βœ… β€” 2026-03-29 22:25:05
s*a*c*d*g*o*n*a*i*n.org (WP 6.9.4) βœ… β€” 2026-03-27 13:29:21
m*t*c*e*.pt βœ… β€” 2026-03-27 11:58:47
j*n*l*s*o*t.cn βœ… β€” 2026-03-20 03:00:37
e*p*r*e*c*o*f*r*s*i*e.org βœ… β€” 2026-03-19 20:16:45
s*a*l*i*c*a*g*s.com βœ… β€” 2026-03-15 22:59:43
c*o*b*c*.de βœ… β€” 2025-11-12 03:53:19
s*l*t*c*.ca βœ… β€” 2025-11-12 03:35:56
w*t*r*e*h*t*c*.com βœ… β€” 2025-11-11 10:19:26
v*s*r*s*l*.com βœ… β€” 2025-11-11 07:33:00
s*h*e*d*w*r*s.com βœ… β€” 2025-11-10 08:50:18
s*y*o*p*o*o*r*p*y.com βœ… β€” 2025-11-10 08:35:13
s*l*n*r*a.com βœ… β€” 2025-11-10 07:22:17
p*r*e*t*m*l*s*r*h*.com βœ… β€” 2025-11-09 18:57:10
p*p*o*e.com βœ… β€” 2025-11-09 18:52:29
p*n*e*p*e*s.com βœ… β€” 2025-11-09 18:47:21
m*c*n*e*c*i*.com βœ… β€” 2025-11-09 08:44:09
m*z*e*u*a*i*n.com βœ… β€” 2025-11-09 08:32:19
m*a*n*l.com βœ… β€” 2025-11-09 07:45:15
m*d*s*h*m*s.com βœ… β€” 2025-11-08 23:38:45
j*l*c*e*g*.com βœ… β€” 2025-11-08 11:44:43
j*f*n*s*h*i*z.com βœ… β€” 2025-11-08 11:16:14
j*a*l*c*u*o.com βœ… β€” 2025-11-08 11:11:50
j*n*t*e*e*e*l*y.com βœ… β€” 2025-11-08 10:43:17
g*n*p*a*n*n*.com βœ… β€” 2025-11-07 20:40:40
g*n*f*n*n*i*l*l*n*i*g.com βœ… β€” 2025-11-07 20:40:40
g*n*r*t*o*y*i*a*c*a*p*a*n*n*.com βœ… β€” 2025-11-07 20:33:29
f*u*t*e*o.com βœ… β€” 2025-11-07 18:49:18
e*g*p.com βœ… β€” 2025-11-07 10:32:24
e*e*t*i*i*a*i*n*o*p.com βœ… β€” 2025-11-07 10:21:29
d*q*e*n*l*w*e*i*w.com βœ… β€” 2025-11-07 08:35:05
d*m*e*.com βœ… β€” 2025-11-07 07:59:14
d*a*y*r*j*n*.com βœ… β€” 2025-11-07 07:29:43

Top 50 Plugins

Plugin Count
elementor 2,445,231
contact-form-7 2,220,648
elementor-pro 1,379,303
woocommerce 1,143,781
revslider 827,215
js_composer 544,092
jetpack 487,323
wp-rocket 398,176
essential-addons-for-elementor-lite 370,785
header-footer-elementor 313,894
gutenberg-core 296,525
elementskit-lite 293,768
gravityforms 290,665
instagram-feed 283,026
google-analytics-for-wordpress 279,675
complianz-gdpr 275,213
google-site-kit 272,661
cookie-law-info 268,923
sitepress-multilingual-cms 240,854
bluehost-wordpress-plugin 225,598
wpforms-lite 217,902
astra-sites 210,379
litespeed-cache 192,054
gtranslate 165,117
gutenberg 161,373
cookie-notice 157,748
coblocks 155,492
the-events-calendar 140,489
popup-maker 132,457
astra-addon 120,870
bb-plugin 119,992
premium-addons-for-elementor 119,619
LayerSlider 117,351
mailchimp-for-wp 116,139
wp-smushit 115,765
tablepress 113,804
creame-whatsapp-me 105,288
duracelltomi-google-tag-manager 104,768
woocommerce-gateway-stripe 101,920
cleantalk-spam-protect 101,079
pro-elements 100,842
custom-fonts 100,795
akismet 99,711
click-to-chat-for-whatsapp 98,839
honeypot 98,360
smart-slider-3 96,900
megamenu 96,800
fusion-builder 95,419
pixelyoursite 94,312
formidable 91,967

Top 50 Themes

Theme Count
hello-elementor 791,754
Divi 651,874
astra 638,423
pub 198,997
generatepress 148,539
flatsome 148,049
Avada 145,070
h4 118,235
oceanwp 108,498
kadence 96,892
enfold 84,042
salient 81,017
bb-theme 76,055
twentytwentyfour 74,028
blocksy 70,940
twentytwentyfive 69,005
cocoon-master 68,877
betheme 66,038
twentyseventeen 65,444
dt-the7 54,654
woodmart 52,853
neve 47,768
twentytwentyone 41,438
bridge 40,735
Avada-Child-Theme 38,554
swell 36,756
gox 36,222
twentytwenty 36,033
lightning 35,692
twentytwentythree 33,905
bricks 29,400
Impreza 29,371
Newspaper 26,799
twentytwentytwo 26,445
epik-redesign 23,066
pro 21,916
storefront 21,852
extendable 21,847
uncode 21,553
twentysixteen 21,239
yith-wonder 20,232
sydney 19,913
themify-ultra 18,862
Total 17,795
twentyfifteen 16,937
porto 16,182
hestia 15,701
yootheme 14,811
thrive-theme 14,743
twentynineteen 14,661