php Agregar columna是一个自定义帖子类型administrador

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Agregar columna是一个自定义帖子类型administrador相关的知识,希望对你有一定的参考价值。

// Add the custom columns to the book post type:
add_filter( 'manage_book_posts_columns', 'set_custom_edit_book_columns' );
function set_custom_edit_book_columns($columns) {
    unset( $columns['author'] );
    $columns['book_author'] = __( 'Author', 'your_text_domain' );
    $columns['publisher'] = __( 'Publisher', 'your_text_domain' );

    return $columns;
}

// Add the data to the custom columns for the book post type:
add_action( 'manage_book_posts_custom_column' , 'custom_book_column', 10, 2 );
function custom_book_column( $column, $post_id ) {
    switch ( $column ) {

        case 'book_author' :
            $terms = get_the_term_list( $post_id , 'book_author' , '' , ',' , '' );
            if ( is_string( $terms ) )
                echo $terms;
            else
                _e( 'Unable to get author(s)', 'your_text_domain' );
            break;

        case 'publisher' :
            echo get_post_meta( $post_id , 'publisher' , true ); 
            break;

    }
}

以上是关于php Agregar columna是一个自定义帖子类型administrador的主要内容,如果未能解决你的问题,请参考以下文章

php Laravel:Agregar una columna nueva a una tabla medianteunamigración

php agregar自定义菜单

php Agregar专栏是一个非CPT o POST

PHP Php - Agregar href en textos

php Agregar项目菜单前端

PHP Agregar Archivos是一款非常有用的产品