php 在仪表板术语列表中添加自定义列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在仪表板术语列表中添加自定义列相关的知识,希望对你有一定的参考价值。

/* 
===================================================
Agrega Columnas en Taxonomias
===================================================
*/


add_filter("manage_edit-historia_columns", 'theme_columns'); 
 
function theme_columns($theme_columns) {
    $new_columns = array(
        'cb' => '<input type="checkbox" />',
        'name' => __('Name'),
        'combination' => __('Combinacion'),
        'slug' => __('Slug'),
        'posts' => __('Posts')
        );
    return $new_columns;
}

// Add to admin_init function   
add_filter("manage_historia_custom_column", 'manage_theme_columns', 10, 3);
 
function manage_theme_columns($out, $column_name, $theme_id) {
    $theme = get_term($theme_id, 'historia');
    switch ($column_name) {
        case 'combination': 
            // get header image url
            $data =
            $out .= get_field("combination", "historia_" . $theme_id );
            break;
 
        default:
            break;
    }
    return $out;    
}

以上是关于php 在仪表板术语列表中添加自定义列的主要内容,如果未能解决你的问题,请参考以下文章

php 将自定义列添加到“事件日历后端列表”

php 添加自定义货件跟踪以订购管理仪表板

php 向body类添加自定义分类术语

php DashboardWidgeteinfügen - 将自定义仪表板小部件添加到wordpress

将自定义列产品可见性添加到 Woocommerce 3 中的管理产品列表

Wordpress分类术语还有内容的仪表板页面?