0

Quick EditsWordPressでTagsに 2 つのフィールド (input と textarea) を追加できるのだろうか。

実際には、追加したいこれら 2 つのフィールドは[タグの編集Quick Edit] ページで使用できますが、これらの 2 つのフィールドを表示して、簡単にアクセスできるようにしたいと考えています。Quick Edit

コード:

// Add a dummy column for the `posts` post type    
add_filter('manage_edit-post_tag_columns', 'add_dummy_column', 10, 2);
function add_dummy_column($columns)
{
    $columns['headline'] = 'Headline';
    $columns['intro-text'] = 'Intro Text';
    return $columns;
}

// But remove it again on the edit screen (other screens to?)
add_filter('manage_edit-post_tag_columns', 'remove_dummy_column');
function remove_dummy_column($columns)
{
    unset($columns['description']);
    return $columns;
}

function my_column_value($empty = '', $custom_column, $term_id)  
{  
    include_once('taxonomy-metadata.php');
    return esc_html(get_term_meta($term_id, $custom_column, true));  
}  
add_filter('manage_post_tag_custom_column', 'my_column_value', 10, 3); 


function my_quick_edit_custom_box($column_name, $screen, $name)  
{  
    if($name != 'post_tag' && ($column_name != 'headline' || $column_name != 'intro-text')) return false; 

    if($name == 'post_tag' && $column_name == 'headline' ) {
?>  
    <fieldset>  
        <div id="my-custom-content" class="inline-edit-col">  
            <label>  
                <span class="title"><?php if($column_name == 'headline') _e('Headline', 'ie_tag_plugin'); else _e('Intro text', 'ie_tag_plugin'); ?></span>  
                <span class="input-text-wrap"><input name="<?php echo $column_name; ?>" class="ptitle" value="" type="text"></span>  
            </label>            
        </div>  
    </fieldset>  
<?php 
    }

    if($name == 'post_tag' && $column_name == 'intro-text' ) {
?>  
    <fieldset>  
        <div id="my-custom-content" class="inline-edit-col">  
            <label>  
                <span class="title"><?php if($column_name == 'headline') _e('Headline', 'ie_tag_plugin'); else _e('Intro text', 'ie_tag_plugin'); ?></span>  
                <span class="input-text-wrap"><textarea name="<?php echo $column_name; ?>" class="ptitle"><?php $data = esc_html( $data ); ?></textarea></span>  
            </label>            
        </div>  
    </fieldset>  
<?php 
    }   
}  
add_action('quick_edit_custom_box', 'my_quick_edit_custom_box', 10, 3);


function my_save_term_meta($term_id)  
{  
    $allowed_html = array(  
        'b' => array(),  
        'em' => array (),  
        'i' => array (),  
        'strike' => array(),  
        'strong' => array(),  
    );  
    if(isset($_POST['headline']))  
        update_term_meta($term_id, 'headline', wp_kses($_POST['headline'], $allowed_html));  
    if(isset($_POST['intro-text']))  
        update_term_meta($term_id, 'intro-text', wp_kses($_POST['intro-text'], $allowed_html));  
} 

add_action('edited_post_tag', 'my_save_term_meta', 10, 1);

私はこれをやろうとしましたが、これらのコードはデータを保存していません.これをすべてやった後は混乱しているようです.

ここに画像の説明を入力

このタスクを実行する方法はありますか、教えてください。とても感謝しています。

皆さん、ありがとうございました。

4

0 に答える 0