自定义帖子类型标题占位符

时间:2015-07-26 作者:Walid Ammar

是否可以将自定义占位符用于自定义帖子标题?

我看不到中提到的任何占位符labels 的数组参数register_post_type function documentation.

enter image description here

1 个回复
最合适的回答,由SO网友:Mohammad Mursaleen 整理而成

是的,当然你可以通过使用enter_title_here 过滤器挂钩。

    add_filter(\'enter_title_here\', \'my_title_place_holder\' , 20 , 2 );
    function my_title_place_holder($title , $post){

        if( $post->post_type == \'portfolio\' ){
            $my_title = "Add new Portfolio";
            return $my_title;
        }

        return $title;

    }

结束

相关推荐

修改自定义发布类型的WP_TITLE

试图通过带有筛选器的自定义帖子类型修改WP\\U标题的输出。我对\\u title没有任何问题,但我假设通过标题调用wp\\u title函数就是问题所在,我缺少一些简单的东西。我想做的是将带有一些元框数据的列表页面的输出更改为页面标题标记。到目前为止,我的设置如下:add_filter(\'wp_title\', \'dw_listing_title\', 10, 2); function dw_listing_title($title, $id) { if(\'sp_prop