ฉันเพิ่งทำสิ่งที่คล้ายกันไม่กี่ชั่วโมงที่ผ่านมาดังนั้นรหัสของฉันอาจไม่ดีที่สุด แต่คุณต้องใช้ 2 hooks เพื่อให้ได้สิ่งนี้ ในขณะที่คุณใช้ประเภทโพสต์ที่กำหนดเองจากสิ่งที่ฉันเห็นในรหัสของคุณตะขอทั้งสองนี้จะเป็น
manage_post_type_posts_columns ()
manage_post_type_posts_custom_column ()
ฉันใช้manage_post_type_posts_columns()
ตัวกรอง hook เพื่อสร้างคอลัมน์ชื่อเรื่องใหม่และยกเลิกการตั้งค่าคอลัมน์เก่าและจากนั้นmanage_post_type_posts_custom_column()
hook การดำเนินการเพื่อใช้วิธีการของตัวเองในการสร้างเนื้อหา / ชื่อเรื่องใหม่สำหรับคอลัมน์นี้
หวังว่าจะช่วยได้เพิ่มรหัสของคุณในเช่นกัน ...
// Replace your Title Column with the Existing one //
function replace_title_column($columns) {
$new = array();
foreach($columns as $key => $title) {
if ($key=='title')
$new['new-title'] = 'New Title'; // Our New Colomn Name
$new[$key] = $title;
}
unset($new['title']);
return $new;
}
// Replace the title with your custom title
function replace_title_products($column_name, $post_ID) {
if ($column_name == 'new-title') {
$oldtitle = get_the_title();
$newtitle = str_replace(array("<span class='sub-title'>", "</span>"), array("", ""),$oldtitle);
$title = esc_attr($newtitle);
echo $title;
}
}
add_filter('manage_mycpt_columns', 'replace_title_column');
add_action('manage_mycpt_custom_column', 'replace_title_products', 10, 2);