PHPackages                             thoughtsideas/ti-whitelabel - 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. thoughtsideas/ti-whitelabel

ActiveWordpress-muplugin

thoughtsideas/ti-whitelabel
===========================

Whitelabel WordPress Admin area.

v0.2.1(8y ago)22.5k[2 issues](https://github.com/thoughtsideas/ti-whitelabel/issues)GPL-2.0+PHPPHP &gt;=5.6

Since Jul 20Pushed 8y agoCompare

[ Source](https://github.com/thoughtsideas/ti-whitelabel)[ Packagist](https://packagist.org/packages/thoughtsideas/ti-whitelabel)[ Docs](https://github.com/thoughtsideas/ti-whitelabel/)[ RSS](/packages/thoughtsideas-ti-whitelabel/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (3)Dependencies (1)Versions (7)Used By (0)

\[TI\] Whitelabel
=================

[](#ti-whitelabel)

[![license](https://camo.githubusercontent.com/5b201f9dd04849360cb9aa2f2e1bb2ec9726e2368b7fcef2d5bace9e09baa0b6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f74686f756768747369646561732f74692d77686974656c6162656c2e737667)](https://github.com/thoughtsideas/ti-whitelabel) [![GitHub release](https://camo.githubusercontent.com/a2314ff99a24f79d4a542273f8703dbc238d6311514afea1c477ecfd602a7e36/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f74686f756768747369646561732f74692d77686974656c6162656c2e737667)](https://github.com/thoughtsideas/ti-whitelabel) [![Build Status](https://camo.githubusercontent.com/48e27d07b4b16b725c6e609cba84b22d1cb94c49a7859a4aaad3204ad44d35ea/68747470733a2f2f7472617669732d63692e6f72672f74686f756768747369646561732f74692d77686974656c6162656c2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/thoughtsideas/ti-whitelabel) [![Packagist](https://camo.githubusercontent.com/6bdc818dd8c7059bbae7abada697fc90b5b57b8d67911aae1c5f4b66a9bd66a7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f74686f756768747369646561732f74692d77686974656c6162656c2e737667)](https://packagist.org/packages/thoughtsideas/ti-whitelabel) [![Packagist](https://camo.githubusercontent.com/efe0aaa36cc4f4358060f0546f46d533c653ac4f7897014830a3898b07f7d51f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f74686f756768747369646561732f74692d77686974656c6162656c2e737667)](https://packagist.org/packages/thoughtsideas/ti-whitelabel) [![GitHub issues](https://camo.githubusercontent.com/8aa1e37886ef4f4d1efa2d527081c32784869e9e59c9645f04c81f9e9ff2a699/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f74686f756768747369646561732f74692d77686974656c6162656c2e737667)](https://github.com/thoughtsideas/ti-whitelabel) [![Libraries.io for GitHub](https://camo.githubusercontent.com/1670b9d3d8dfdd905e8ea54ca250744014a712a370f3c6cc736233ccd0947382/68747470733a2f2f696d672e736869656c64732e696f2f6c6962726172696573696f2f6769746875622f74686f756768747369646561732f74692d77686974656c6162656c2e737667)](https://github.com/thoughtsideas/ti-whitelabel)

Rebrand your WordPress install's in to match your company or clients branding.

- [Readme](https://github.com/thoughtsideas/ti-whitelabel/blob/master/readme.md)
- [Issues](https://github.com/thoughtsideas/ti-whitelabel/issues/)
- [Continuous Integration](/#0)

Dependencies
------------

[](#dependencies)

- [GIT](https://git-scm.com/downloads/)
- [PHP](http://www.php.net/)
- [NodeJS](https://nodejs.org/)

Installation
------------

[](#installation)

*We recommend installing this dependency via Composer.*

### As a Composer Dependency

[](#as-a-composer-dependency)

To include these standards as part of a project. Require this repository as a development dependency:

```
composer require thoughtsideas/ti-whitelabel

```

Making Your Changes
-------------------

[](#making-your-changes)

Make your changes locally on a new branch based off `origin/master`. Commit your changes to your new branch and regularly push your work to the same named branch on the server. When you need feedback or help, or you think the branch is ready for merging, open a pull request. After someone else has reviewed and signed off on the feature, you can merge it into master.

Documentation
-------------

[](#documentation)

During the Alpha/Beta stages, due to constant changes, documentation will be mainly written in-line. With a dedicated section being created at the first major release.

### Customize WordPress Login

[](#customize-wordpress-login)

#### Custom CSS

[](#custom-css)

```
/**
 * Apply our custom styles to the WordPress Login page.
 *
 * @param  array $defaults Default values set by the plugin.
 * @return array           Our modified styles.
 */
function my_customized_login_css( $defaults ) {

	$args = array(
		'background-color' => 'SlateGray', // Accepts all CSS color values.
		'logo'             => array(
			'url'             => get_theme_mod( 'custom_logo' ), // Relative or absolute.
			'width'           => '275px', // Accepts all CSS units.
			'height'          => '100px', // Accepts all CSS units.
		),
		'color'             => 'rgb(51, 51, 51)', // Accepts all CSS color values.
		'link'             => '#ffffff', // Accepts all CSS color values.
		'hover'            => 'hsl(0, 0%, 0%)', // Accepts all CSS color values.
	);

	return wp_parse_args( $args, $defaults );
}

add_filter(
	'ti_whitelable_login_css',
	'my_customized_login_css'
);

```

#### Custom Header URL

[](#custom-header-url)

```
/**
 * Apply our custom url to the WordPress Login page logo.
 *
 * @param  string $default  Default values set by the plugin.
 * @return string           Our modified value.
 */
function my_customized_header_url( $default ) {

	return 'https://thoughtsideas.uk';

}

add_filter(
	'ti_whitelabel_login_header_url',
	'my_customized_login_header_url'
);

```

#### Custom Header Title

[](#custom-header-title)

```
/**
 * Apply our custom heading text to the WordPress Login page logo.
 *
 * @param  string $default  Default values set by the plugin.
 * @return string           Our modified value.
 */
function my_customized_header_title( $default ) {

	return 'Thoughts &amp; Ideas - Simplifying your promotion.';

}

add_filter(
	'ti_whitelabel_login_header_title',
	'my_customized_login_header_title'
);

```

### Customize WordPress Admin

[](#customize-wordpress-admin)

#### Custom Admin Footer Text

[](#custom-admin-footer-text)

```
/**
 * Apply our custom admin footer text to the WordPress admin page.
 *
 * @return string           Our modified value.
 */
function my_customized_admin_footer_text() {
	return sprintf(
		'%1$s %2$s.',
		esc_html( 'Created by' ),
		esc_html( 'Thoughts & Ideas' ),
		esc_url( 'https://www.thoughtsideas.uk/' )
	);
}

add_filter(
	'ti_whitelabel_admin_footer_text',
	'my_customized_admin_footer_text'
);

```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~17 days

Total

3

Last Release

3187d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2fec197a87af0282fd3da1e2e3bc3794181c105368cccb719ae583911967343d?d=identicon)[thoughtsideas](/maintainers/thoughtsideas)

---

Top Contributors

[![michaelbragg](https://avatars.githubusercontent.com/u/1015212?v=4)](https://github.com/michaelbragg "michaelbragg (44 commits)")

---

Tags

wordpress-plugincomposerwordpresswpseo

### Embed Badge

![Health badge](/badges/thoughtsideas-ti-whitelabel/health.svg)

```
[![Health](https://phpackages.com/badges/thoughtsideas-ti-whitelabel/health.svg)](https://phpackages.com/packages/thoughtsideas-ti-whitelabel)
```

###  Alternatives

[justcoded/wordpress-theme-boilerplate

WordPress theme boilerplate with better code structure and OOP support.

563.9k1](/packages/justcoded-wordpress-theme-boilerplate)

PHPackages © 2026

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