2014-10-08 138 views
0

我正在創建一個自定義帖子類型,並且希望操作Create New Post部分的標題字段中的佔位符文本。更改Wordpress帖子標題佔位符

要求:
- 它只能針對一種特定的帖子類型,而不能針對所有帖子。
- 它不能反映帖子類型的名稱,它必須是完全自定義文本。
- 它不必從wordpress管理部分進行編輯,自定義文本可以放在functions.php文件中的函數中。

回答

3

你可以把這個片段到functions.php

function change_default_title($title){ 

$screen = get_current_screen(); 

if ('your_custom_post_type' == $screen->post_type){ 
$title = 'Your custom placeholder text'; 
} 

return $title; 
} 

add_filter('enter_title_here', 'change_default_title'); 

這應該改變Titel的。

發現日期:https://gist.github.com/FStop/3094617

相關問題