web-dev-qa-db-ja.com

管理者リストテーブルのタイトルを置き換える

ここに私の状況です:私は私のカスタム投稿タイプの編集テーブルのtitle列の内容をフィルタしようとしていますが、うまく動かせません。

これが私が試したことです。

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>タグをフィルタリングしたいだけです。誰かが私を助けてもらえますか?

8
Pipo

1.投稿リスト欄の投稿タイトルを変更する

私はあなたが欲しいものを誤解しました - 明らかに。あなたはこのようにすることができます:

add_action(
    'admin_head-edit.php',
    'wpse152971_edit_post_change_title_in_list'
);
function wpse152971_edit_post_change_title_in_list() {
    add_filter(
        'the_title',
        'wpse152971_construct_new_title',
        100,
        2
    );
}

function wpse152971_construct_new_title( $title, $id ) {
    //print_r( $title );
    //print_r( $id );
    return 'new';
}

admin_head-$hook_suffix フックを利用する。


(免責事項:それは関連した良い情報なのでこれを守ること)

2.テーブルの列タイトルを置き換えます

その上、あなたはカラムテーブルのタイトルを使ったり上書きしたりしていません。それを行う方法についてのいくつかの例示的なコードの下に:

  1. manage_{$this->screen->id}_columns フックに基づく

    add_filter(
        'manage_edit-post_columns',
        'wpse152971_replace_column_title_method_a'
    );
    function wpse152971_replace_column_title_method_a( $columns ) {  
        //print_r($columns);  
        $columns[ 'title' ] = 'new title';  
        return $columns;  
    }  
    
  2. manage_{$post_type}_posts_columns フックに基づく

    add_filter(
        'manage_post_posts_columns',
        'wpse152971_replace_column_title_method_b'
    );
    function wpse152971_replace_column_title_method_b( $posts_columns ) {
        //print_r($posts_columns);
        $posts_columns[ 'title' ] = 'new title';
        return $posts_columns;
    }
    

最後になりましたが、重要なことに、次のコードは必要な情報を取得するのに便利です。

add_action( 'admin_head', 'wpse152619_dbg_dev' );
function wpse152619_dbg_dev() {
    global $pagenow;
    print_r( $pagenow );
    echo '<br>';
    print_r( $_GET[ 'taxonomy' ] );
    echo '<br>';
    $current_screen = get_current_screen();
    print_r( $current_screen->id );
}
18
Nicolai

私は数時間前に似たようなことをしたばかりなので、私のコードは最善ではないかもしれませんが、これを達成するには2つのフックを使用する必要があります。私があなたのコードで見たものからカスタム投稿タイプを使っているように見えるので、これらの2つのフックはそうなるでしょう。

manage_post_type_posts_columns()

manage_post_type_posts_custom_column()

manage_post_type_posts_columns()フィルターフックを使用して新しいTitle列を作成し、古い列を設定解除してからmanage_post_type_posts_custom_column()アクションフックを使用して、この列に新しいcontent/titleを生成しました。

これが助けになることを願っています、同様にあなたのコードを追加しました...

// Replace your Title Column with the Existing one //
function replace_title_column($columns) {

    $new = array();

    foreach($columns as $key => $title) {
        if ($key=='title') 
        $new['new-title'] = 'New Title'; // Our New Colomn Name
        $new[$key] = $title;
    }

    unset($new['title']); 
    return $new;
}

// Replace the title with your custom title
function replace_title_products($column_name, $post_ID) {
    if ($column_name == 'new-title') {
        $oldtitle = get_the_title();
        $newtitle = str_replace(array("<span class='sub-title'>", "</span>"), array("", ""),$oldtitle);
        $title = esc_attr($newtitle); 
        echo $title; 
    }
}

add_filter('manage_mycpt_columns', 'replace_title_column');
add_action('manage_mycpt_custom_column', 'replace_title_products', 10, 2);
1
Matt Royal

列を置換する

これは、特定の列を追加および削除するのではなく、列を完全に置き換える例です。

function set_book_columns($columns) {
    return array(
        'cb' => '<input type="checkbox" />',
        'title' => __('Title'),
        'comments' => '<span class="vers comment-grey-bubble" title="' . esc_attr__( 'Comments' ) . '"><span class="screen-reader-text">' . __( 'Comments' ) . '</span></span>',
        'date' => __('Date'),
        'publisher' => __('Publisher'),
        'book_author' =>__( 'Book Author')
    );
}
add_filter('manage_book_posts_columns' , 'set_book_columns');

もっと見る: ここにリンクの説明を入力してください

0
Super Model