php 更改默认CPT标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 更改默认CPT标题相关的知识,希望对你有一定的参考价值。

//change 'CPT' to the name
//change "location" to the CPT slug
//will display custom text for the placeholder for the CPT title in editor

function change_default_CPT_title( $enter_title_here, $post ){ 
    if ( isset($post->post_type) && 'location' == $post->post_type ) {
        $enter_title_here = "Enter the CPT's name";
    }
    return $enter_title_here;
}
add_filter( 'enter_title_here', 'change_default_CPT_title', 11, 2 );

以上是关于php 更改默认CPT标题的主要内容,如果未能解决你的问题,请参考以下文章

php CPT'食谱'编辑器中的默认模板块

如何在帖子类型“页面”上更改CPT循环的摘录长度?

wpml-在存档页显示所有CPT,如果未翻译,则显示默认语言

php 标题占位符“在这里输入标题”#CPT #white

php中的动态函数名

如何更改wordpress中的slug?