Post Type Description for ‘Posts’

On the site I’m currently developing I am using ‘Custom Post Type UI’ to manage my custom post types.

Within this I can manage the description for any of the new custom post types that I have created.

Read More

How would I go about editing the description of the default ‘posts’ post type?

I am outputting this description under the heading in each section.

Thanks!

Related posts

Leave a Reply

1 comment

  1. you can use global $wp_post_types to edit the description for example:

    add_action('init' , 'edit_post_description');
    function edit_post_description(){
        global $wp_post_types;
        $wp_post_types['post'] ->description = 'type your description here...';
    }