Post Title Color

0

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

Version
Last updated
Active installations
WordPress Version
Tested up to
Rating
Total ratings
Tag
This plugin is outdated and might not be supported anymore.

Description

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;
}
`