Skip to content

Commit 83c7b9c

Browse files
author
cristianraiber
committed
added Colorlib Login Customizer as recommended plugin
1 parent a3a85ee commit 83c7b9c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

inc/class-shapely.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
class Shapely {
44

55
public $recommended_plugins = array(
6-
'simple-custom-post-order' => array(
6+
'simple-custom-post-order' => array(
77
'recommended' => false,
88
),
9-
'fancybox-for-wordpress' => array(
9+
'fancybox-for-wordpress' => array(
10+
'recommended' => false,
11+
),
12+
'colorlib-login-customizer' => array(
1013
'recommended' => false,
1114
),
1215
);
@@ -178,8 +181,10 @@ private function generate_action_html() {
178181

179182
private function generate_checkbox( $id, $label, $name = 'options', $block = false ) {
180183
$string = '<label><input checked type="checkbox" name="%1$s" class="demo-checkboxes"' . ( $block ? ' disabled ' : ' ' ) . 'value="%2$s">%3$s</label>';
184+
181185
return sprintf( $string, $name, $id, $label );
182186
}
183187

184188
}
189+
185190
new Shapely();

0 commit comments

Comments
 (0)