php Agregar columna en posttype
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Agregar columna en posttype相关的知识,希望对你有一定的参考价值。
/*
===================================================
Agrega Columnas en PostType
===================================================
*/
// Add to admin_init function
add_filter('manage_edit-hitos_columns', 'add_new_hitos_columns');
function add_new_hitos_columns($gallery_columns) {
$new_columns['cb'] = '<input type="checkbox" />';
$new_columns['title'] = _x('Título', 'column name');
$new_columns['historia'] = __('Historia');
$new_columns['moments'] = __('Momentos');
$new_columns['type'] = __('Tipo');
return $new_columns;
}
// Add to admin_init function
add_action('manage_hitos_posts_custom_column', 'manage_hitos_columns', 10, 2);
function manage_hitos_columns($column_name, $id) {
global $wpdb;
switch ($column_name) {
case 'historia':
$historia = get_the_terms( $id, "historia" );
rsort($historia);
$oneCategory = $historia[key($historia)];
echo $oneCategory->name;
break;
case 'moments':
echo get_field("moment",$id);
break;
case 'type':
echo get_field("type",$id);
break;
default:
break;
} // end switch
}
以上是关于php Agregar columna en posttype的主要内容,如果未能解决你的问题,请参考以下文章
php Laravel:Agregar una columna nueva a una tabla medianteunamigración
PHP Php - Agregar href en textos
php Agregar Tabs personalizados en WooCommerce sin plugins
Php-Agregar href en textos
php [壮举图片2] Agregar un param a feature image(en este caso transparencia #wordpress #php
php [Redirecciones WP] Agregar redirecciones en wordpress - util para llamadas ajax,por ejemplo #w