Post Title Color
Puts a colorpicker on the edit posts pages so you can change the color of the title in your blog
The facts
- Rating
- 5★ from 3
- Active installs
- 200+
- Price
- Free
- Last updated
- 29 Sep 2016
- Added
- Sep 2010
- Requires WP
- 3.5
- Tested up to
- WP 4.6.30
- Downloads
- 17,193
Our analysis
AI-assistedPost Title Color is a WordPress plugin that allows you to change the colour of post titles in your blog using a colour picker on the edit posts page. It can also be enabled for pages through a filter. This plugin is suitable for users who want to customise the appearance of their post titles easily.
The plugin is free and has received positive ratings, indicating user satisfaction. However, it has not been updated since September 2016, which may raise concerns about compatibility with newer versions of WordPress beyond what it has been tested with.
Best for: This plugin suits bloggers and site owners looking to customise title colours on their posts and pages.
What it does well
- ✓Allows colour customisation of post titles
- ✓Includes a colour picker for easy selection
- ✓Can be enabled for pages using a filter
- ✓Free to use from the WordPress.org directory
Where it falls short
- •Last updated in September 2016
- •Tested only up to WordPress 4.6.30
- •Directory score of 47/100 indicates potential issues
Verdict
Post Title Color provides a simple way to change title colours, but its outdated status may limit its effectiveness on newer WordPress installations.
From the developer
Kailey (trepmal)'s own description of Post Title Color, lightly tidied.
Puts a colorpicker on the edit posts pages so you can change the color of the title in your blog
I’m on Twitter
This can be enabled for pages by using the post_title_colors_post_types filter.
`
add_filter( ‘post_title_colors_post_types’, ‘ptc_on_pages’ );
function ptc_on_pages( $post_types ) {
$post_types[] = ‘page’;
return $post_types;
}
`