Wordpress 관리 화면에 범주 ID 표시
2630 단어 WordPress
functions.php에 도달
<?php
function add_category_columns($columns)
{
$index = 1; // 追加位置
return array_merge(
array_slice($columns, 0, $index),
array('id' => 'ID'),
array_slice($columns, $index)
);
}
add_filter('manage_edit-category_columns', 'add_category_columns');
function add_category_custom_fields($deprecated, $column_name, $term_id)
{
if ($column_name == 'id') {
echo $term_id;
}
}
add_action('manage_category_custom_column', 'add_category_custom_fields', 10, 3);
이렇게 쓰면 편집 화면이 이렇게 돼요.다른 곳으로 가져갈 때는 필터/동작명만 찾아서 추적하면 된다.
Reference
이 문제에 관하여(Wordpress 관리 화면에 범주 ID 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ashikawa/items/5f94fb5e33da7b023ac8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)