最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

WordPress CPT custom custom label

programmeradmin1浏览0评论

I want to edit the html output of the CPT page. Searched a lot but didn't find a solution ... May be I'm searching it wrong or it not might have done by anyone yet.

In the screenshot above one can clearly see the title Contest which is a label when I registered this post type. Its generating in <h1> tag. Either I want to edit the output or add a new element (i.e. and image) above it.

I want to edit the html output of the CPT page. Searched a lot but didn't find a solution ... May be I'm searching it wrong or it not might have done by anyone yet.

In the screenshot above one can clearly see the title Contest which is a label when I registered this post type. Its generating in <h1> tag. Either I want to edit the output or add a new element (i.e. and image) above it.

Share Improve this question asked Sep 29, 2019 at 10:33 OmerOmer 2751 silver badge9 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You can add anything up there with the 'in_admin_header' action. Example (pseudo code):

add_action( 'in_admin_header', function() {
    if ( ... check $post_type, $pagenow etc, to target right page only ... ) {
        echo '<p>Hello editor</p>';
    }
} );

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论