MB Admin Column : Could i change default "Title" with another word

Support General MB Admin Column : Could i change default "Title" with another word

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #2629
    yaufaniyaufani
    Participant

    Hello
    thank for the great plugins, i have a question about MB Admin Column

    Could i change default "Title" with another words like 'Book Title' or 'Lecture Name' etc with this plugin?

    here is the sample :
    http://prntscr.com/amazji

    thank you

    #2631
    Anh TranAnh Tran
    Keymaster

    Unfortunately, it's not supported. The plugin is made for working with custom fields and should handle custom columns for custom field only. For the default WP columns, I made it support replacing them only.

    However, you can do that with a simple code like this:

    add_filter('manage_edit-POST_TYPE_columns', 'prefix_custom_columns');
    function prefix_custom_columns( $columns ) {
        $columns['title'] = __( 'Lecture Name', 'textdomain' );
        return $columns;
    }

    For more details, you can check this tutorial.

    #2632
    yaufaniyaufani
    Participant

    ok thank you, it does not matter
    i will try your tutorial

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘MB Admin Column : Could i change default "Title" with another word’ is closed to new replies.