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

Plugin: easy-widget-columns (Used by 109 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
s*h.de F 2026-06-12 20:43:59
7*a*o*d*n.com (WP 7.0) F 2026-06-12 13:42:36
p*-*a*a*g.g*.id (WP 6.9.4) C 2026-06-09 14:41:41
p*-*u*r*.g*.id (WP 7.0) F 2026-06-06 07:05:57
p*i*o*o*o*.o*g.uy (WP 7.0) F 2026-06-03 22:59:05
e*e*t*i*i*a*i*n*o*p.com F 2026-06-02 14:41:17
c*s*b*l*a*a*u*a.com (WP 6.6.5) F 2026-06-02 06:02:49
d*a*y*r*j*n*.com (WP 6.8.5) F 2026-06-01 06:34:16
c*r*a*l*r*i*p*t*h*r.com (WP 6.6.5) F 2026-05-31 21:25:12
i*e*l*i*i*s.eu (WP 6.9.4) F 2026-05-31 21:21:26
c*-*o*.eu (WP 6.9.4) F 2026-05-31 21:21:26
s*l*t*c*.ca D 2026-05-31 20:38:17
l*t*l*e*d*c*u*.com (WP 7.0) F 2026-05-31 14:28:31
s*n*e*v*l*a*e*o*m*n*t*.org 🔓 F 2026-05-31 12:06:17
l*s*m*n*t*s*a*e.com (WP 5.2.21) ⚠️ F 2026-05-31 11:11:55
c*u*t*b*e*e*y.ca (WP 7.0) F 2026-05-30 14:47:45
h*r*o*d.blog (WP 7.0) F 2026-05-30 14:47:45
o*j.j*d*c*a*y.g*.ke (WP 6.8.3) F 2026-05-30 12:17:25
d*g*o*t*n.com F 2026-05-29 15:27:01
c*c*o*i*t*.com (WP 6.7.5) F 2026-05-28 23:39:53
i*y*-*a*n*.de (WP 6.6.5) F 2026-05-28 11:42:05
h*r*o*d.co (WP 7.0) F 2026-05-28 05:22:33
c*r*s*a*t*r*o*n*h*.com F 2026-05-28 01:15:51
s*o*k*x*l.com (WP 7.0) F 2026-05-27 23:21:57
i*r*v*i*.com (WP 7.0) F 2026-05-27 20:45:08
c*c*u*a.com (WP 6.9.4) F 2026-05-27 18:29:18
m*s*i*n*n*o*.com (WP 5.8.13) ⚠️ F 2026-05-27 10:53:26
w*y*f*e*e.org F 2026-05-27 05:18:38
i*n*e*l*h*y*t*m*.com (WP 7.0) F 2026-05-27 01:40:01
e*b*.i*e*-*t.org (WP 6.7.5) B 2026-05-26 15:39:16
b*r*a*i*n*e*p*i*e*i*c.com (WP 5.8.13) ⚠️ A 2026-05-25 12:00:17
i*r*d*c*i*l*.ch (WP 4.9.29) ⚠️ F 2026-05-25 07:24:35
u*f*o*t*o*c*n*e*.com (WP 6.9.4) F 2026-05-25 03:35:39
n*n*i.no (WP 6.7.2) F 2026-05-25 02:11:10
s*g*l*e*b*n*-*h.de F 2026-05-24 10:49:48
s*b*r*a*a*o*.org F 2026-05-23 20:29:58
b*u*e*a*t*n*t*t*t*.com (WP 5.5.18) ⚠️ F 2026-05-23 15:44:31
a*o*l*c*r*e*c*n*e*h*.com F 2026-05-23 07:20:33
n*k*a*a*.no (WP 7.0) F 2026-05-23 03:41:48
w*r*.w*s*.edu (WP 6.9.4) F 2026-05-23 00:27:29
r*s*-*p*s.com F 2026-05-22 13:29:34
s*a*l*i*g*e*i*a*.com (WP 6.9.4) D 2026-05-22 10:20:10
g*o*a*q*e*a*l*s*e*a*t*b*i*.es (WP 6.2.9) ⚠️ F 2026-05-21 16:39:21
s*u*h*u*y*u*i*.com F 2026-05-21 09:43:28
s*n*a*o*a*.com (WP 6.9.4) F 2026-05-21 02:15:37
a*n*g*e*e*k*.com (WP 7.0) F 2026-05-20 23:31:46
s*a*i*g*d*.w*e*g*n*.com F 2026-05-20 17:47:58
d*v*n*n*s.com (WP 5.6.17) ⚠️ F 2026-05-20 17:37:30
h*y*i*o.com (WP 4.9.29) ⚠️ F 2026-05-20 11:21:30
r*s*d*n*i*s*r*x*s.com (WP 6.7.5) F 2026-05-19 14:28:00
e*c*a*u*o.c*m.mx F 2026-05-19 06:12:04
y*h*r*h*d*n*i*s.com 🔓 F 2026-05-18 23:17:50
l*m.y*z.m*b*u*h*s*.me (WP 6.9.4) F 2026-05-18 04:16:04
e*p*c*l*l*s.com (WP 6.9.4) F 2026-05-16 22:32:49
e*k*n*e*p*j*r.com F 2026-05-16 19:58:10
o*f*c*r*n*a*i*c.com F 2026-05-16 02:31:04
h*r*o*d*s*a*e*i*e*a*d*.com (WP 6.9.4) F 2026-05-16 01:44:06
j*o*l*n*c*s*n*.com (WP 4.9.3) ⚠️ F 2026-05-15 18:11:44
n*r*l*a*.com F 2026-05-15 16:44:43
h*r*o*t*e*.com (WP 5.3.21) ⚠️ F 2026-05-15 16:03:02
b*c*a.g*v.bt (WP 6.5.8) F 2026-05-15 12:48:07
m*r*o*a*i*s.com (WP 6.7.4) 🔓 F 2026-05-15 07:42:34
y*r*o*k*d*.com (WP 6.9.4) F 2026-05-15 06:53:46
a*p*n*-*o*g*.com (WP 6.9.4) F 2026-05-15 02:16:25
m*r*e*o*d*n*.com 🔓 F 2026-05-15 01:04:34
g*o*c*p*o*i*i*y.com (WP 6.2.8) ⚠️ F 2026-05-13 20:54:13
v*s*t*x*o*d*n*o*f*r*s*i*e.com F 2026-05-13 18:24:27
f*l*m*o*b*a*h.c*m.vn (WP 6.9.4) F 2026-05-13 12:56:51
c*n*r*b*o*u*n*i*o.com (WP 6.8.5) F 2026-05-13 11:42:35
m*n*j*a*s*l*o*c*.com (WP 5.7.15) ⚠️ F 2026-05-13 11:21:43
c*e*e*a*r*n*i*n*o.com (WP 6.8.2) F 2026-05-13 07:52:49
l*v*j*f*e*s*n*i*e.com F 2026-05-12 21:23:30
t*n*a*s.com (WP 5.5.18) ⚠️ F 2026-05-11 18:34:16
j*a*l*c*u*o.com (WP 6.4.8) ⚠️ F 2026-05-11 16:44:07
n*z.i*w.l*b*i*.pl (WP 6.9.1) F 2026-05-11 15:20:51
c*u*t*b*e*.com (WP 6.9.4) F 2026-05-11 11:00:07
3*m*d*a*o.com (WP 6.9.4) F 2026-05-10 07:45:04
b*s*k*l*h*p.com (WP 6.9.4) F 2026-05-09 22:59:09
e*g*p.com (WP 4.7.29) ⚠️ F 2026-05-09 21:38:21
e*p*r*e*c*o*f*r*s*i*e.org F 2026-05-09 20:17:14
c*a*-*u*s*-*e*n*s.fr (WP 6.9.4) D 2026-05-09 15:47:47
b*l*a*i*.fr (WP 6.9.4) F 2026-05-09 14:36:12
s*n*a*.pt (WP 6.0.5) ⚠️ F 2026-05-09 07:32:29
c*s*b*l*a*a*u*a.eu (WP 6.6.5) F 2026-05-09 02:58:42
b*u*e*a*t*n*t*t*t*.org (WP 5.5.18) ⚠️ F 2026-05-08 16:33:53
1*t*p*f*i*e*u*n*t*r*.com F 2026-05-08 16:26:45
a*o*t.b*z*n*.com (WP 5.2.21) ⚠️ F 2026-05-08 00:30:13
m*c*n*e*c*i*.com F 2026-05-07 17:33:08
g*e*f*r*r*s*.u*e*r*h*o*i*.com (WP 6.9.4) F 2026-05-07 16:41:56
s*a*c*d*g*o*n*a*i*n.org (WP 6.9.4) F 2026-05-07 14:27:04
p*n*y*a*.com (WP 5.6.17) ⚠️ F 2026-05-07 13:45:59
m*t*c*e*.pt F 2026-05-07 10:34:35
i*e*e*u*a.com F 2026-05-07 08:27:22
s*h*e*d*w*r*s.com F 2026-05-07 05:22:35
p*r*e*t*m*l*s*r*h*.com 🔓 F 2026-05-07 02:06:06
m*z*e*u*a*i*n.com (WP 6.0.11) ⚠️ D 2026-05-07 00:55:39
p*p*o*e.com (WP 6.9.4) D 2026-05-06 19:03:44
g*n*p*a*n*n*.com F 2026-05-03 17:54:07
g*n*f*n*n*i*l*l*n*i*g.com F 2026-05-03 17:46:22
w*n*i*e*p*.pl (WP 5.1.16) ⚠️ F 2026-05-03 14:53:54

Top 50 Plugins

Plugin Count
elementor 1,834,974
contact-form-7 1,805,395
elementor-pro 1,069,674
woocommerce 831,175
revslider 628,526
jetpack 473,249
js_composer 440,228
wp-rocket 341,005
essential-addons-for-elementor-lite 300,145
gravityforms 270,579
complianz-gdpr 262,997
cookie-law-info 236,572
instagram-feed 232,313
google-site-kit 226,154
sitepress-multilingual-cms 225,560
google-analytics-for-wordpress 217,459
header-footer-elementor 213,861
elementskit-lite 211,389
bluehost-wordpress-plugin 191,844
gutenberg 164,589
gutenberg-core 162,474
cookie-notice 155,603
litespeed-cache 135,239
the-events-calendar 134,880
wpforms-lite 131,470
gtranslate 130,461
astra-sites 121,039
popup-maker 118,166
woocommerce-payments 114,462
tablepress 112,366
coblocks 101,429
honeypot 99,514
astra-addon 96,982
duracelltomi-google-tag-manager 95,600
wp-smushit 95,268
all-in-one-seo-pack 94,836
LayerSlider 93,178
bb-plugin 91,997
megamenu 88,536
premium-addons-for-elementor 88,535
akismet 87,226
mailchimp-for-wp 85,188
cleantalk-spam-protect 85,035
woocommerce-gateway-stripe 84,457
ml-slider 82,764
borlabs-cookie 81,569
fusion-builder 81,119
wp-pagenavi 80,609
ewww-image-optimizer 80,505
formidable 79,254

Top 50 Themes

Theme Count
hello-elementor 627,686
Divi 519,455
astra 431,031
flatsome 140,279
Avada 126,551
generatepress 124,831
pub 111,883
oceanwp 85,062
kadence 80,297
enfold 73,148
salient 67,774
twentytwentyfour 59,833
h4 57,433
twentyseventeen 57,275
bb-theme 55,987
betheme 52,878
cocoon-master 52,403
blocksy 51,939
dt-the7 47,031
twentytwentyfive 44,923
neve 40,199
Avada-Child-Theme 38,272
sydney 37,893
woodmart 33,918
gox 33,881
bridge 33,424
twentytwentyone 32,668
lightning 31,833
twentytwenty 30,617
swell 28,847
Impreza 27,049
bricks 26,563
twentytwentythree 24,358
Newspaper 24,061
voxel 23,714
kubio 20,713
sinatra 20,411
twentytwentytwo 20,219
uncode 19,485
epik-redesign 19,279
twentysixteen 18,605
storefront 18,237
pro 18,053
Total 14,987
extendable 14,808
yith-wonder 14,114
hello-theme-child-master 13,652
themify-ultra 13,248
yootheme 13,220
hestia 13,119