
200+
安裝啟用
★★★★★
5/5 分(3 則評價)
3458 天前
最後更新
—
問題解決
WordPress 3.5+ v1.4 上架:2010-09-09
內容簡介
在編輯文章頁面加入一個顏色選擇器,讓你可以修改部落格標題的顏色。
我在Twitter上
你可以透過使用 post_title_colors_post_types 過濾器,啟用此功能允許在頁面上使用。
`
add_filter( ‘post_title_colors_post_types’, ‘ptc_on_pages’ );
function ptc_on_pages( $post_types ) {
$post_types[] = ‘page’;
return $post_types;
}
`
外掛標籤
開發者團隊
原文外掛簡介
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;
}
`
