PHPackages                             mustartt/searchable-dropdown-control - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Search &amp; Filtering](/categories/search)
4. /
5. mustartt/searchable-dropdown-control

ActiveWordpress-dropin[Search &amp; Filtering](/categories/search)

mustartt/searchable-dropdown-control
====================================

WordPress Customizer Searchable Dropdown Control adds a searchable dropdown

v1.0.2(4y ago)113GPL-2.0-or-laterPHPPHP &gt;=5.6

Since Jul 14Pushed 4y ago1 watchersCompare

[ Source](https://github.com/mustartt/searchable-dropdown-control)[ Packagist](https://packagist.org/packages/mustartt/searchable-dropdown-control)[ Docs](https://github.com/mustartt/searchable-dropdown-control)[ RSS](/packages/mustartt-searchable-dropdown-control/feed)WikiDiscussions master Synced 5d ago

READMEChangelog (1)DependenciesVersions (3)Used By (0)

searchable-dropdown-control
===========================

[](#searchable-dropdown-control)

A searchable dropdown for wordpress customizer control

Installation
============

[](#installation)

```
composer require mustartt/searchable-dropdown-control
```

Or specify custom install location

```
"require": {
    "mustartt/searchable-dropdown-control": "v1.0"
},
...
"extra": {
    "installer-paths": {
        "inc/{$name}": [
            "mustartt/searchable-dropdown-control"
        ]
    }
}
```

and run

```
composer update
```

Screenshot
----------

[](#screenshot)

What it looks like in the Wordpress Customizer

[![Screenshot](https://camo.githubusercontent.com/8d3520fc1ee27c91b501ceb9aad380eb76d7de63254277d18a850a390367b604/68747470733a2f2f692e696d6775722e636f6d2f6e566a435658442e706e67)](https://camo.githubusercontent.com/8d3520fc1ee27c91b501ceb9aad380eb76d7de63254277d18a850a390367b604/68747470733a2f2f692e696d6775722e636f6d2f6e566a435658442e706e67)

Example Usage
-------------

[](#example-usage)

Include in `functions.php` if the package is installed under `inc`

```
if ( class_exists( 'WP_Customize_Control' ) ) {
    require_once dirname( __FILE__ ) . '/inc/searchable-dropdown-control/searchable-dropdown-control.php';
}
```

Usage for `customizer.php`

```
$wp_customize->add_setting(
    'font',
    array(
        'default'           => 'Roboto',
        'sanitize_callback' => function ( $value ) {
            return $value;
        }
    )
);

$wp_customize->add_control(
    new Customizer_Searchable_Dropdown_Control(
        $wp_customize,
        'font',
        array(
            'label'    => 'Select Font',
            'section'  => 'fonts',
            'settings' => 'font',
            'options'  => array(
                'Roboto', 'Arial', 'Helvetica', 'Calibri'
            )
        )
    )
);
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 80% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

1768d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c38ef687fff31a76b1227f66481d4d78232192e512549d40dbcd4f26a0084e7e?d=identicon)[mustartt](/maintainers/mustartt)

---

Top Contributors

[![mustartt](https://avatars.githubusercontent.com/u/76097827?v=4)](https://github.com/mustartt "mustartt (4 commits)")[![henryj992](https://avatars.githubusercontent.com/u/83833078?v=4)](https://github.com/henryj992 "henryj992 (1 commits)")

---

Tags

searchwordpresswpsearchabledropdowncontrolcustomizer

### Embed Badge

![Health badge](/badges/mustartt-searchable-dropdown-control/health.svg)

```
[![Health](https://phpackages.com/badges/mustartt-searchable-dropdown-control/health.svg)](https://phpackages.com/packages/mustartt-searchable-dropdown-control)
```

###  Alternatives

[webdevstudios/cmb2-post-search-field

Custom field for CMB2 which adds a post-search dialog for searching/attaching other post IDs.

6647.7k2](/packages/webdevstudios-cmb2-post-search-field)[proteusthemes/wp-customizer-utilities

Advanced WordPress customizer controls and settings for better user experience.

329.4k1](/packages/proteusthemes-wp-customizer-utilities)[10up/debug-bar-elasticpress

Extends the Debug Bar plugin for usage with ElasticPress

2917.0k](/packages/10up-debug-bar-elasticpress)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
