3
관리 목록 테이블에서 제목 바꾸기
내 상황은 다음과 같습니다. 사용자 정의 게시물 유형 편집 테이블에서 제목 열의 내용을 필터링하려고하는데 작동하지 않습니다. 내가 시도한 것은 다음과 같습니다. add_filter('manage_edit-mycpt_columns', 'replace_title_products'); function replace_title_products() { $oldtitle = get_the_title(); $newtitle = str_replace(array("<span class='sub-title'>", "</span>"), array("", ""),$oldtitle); $title = esc_attr($newtitle); return $title; } <span>제목 에서 태그 를 필터링하고 싶습니다 . 누군가 …