gpt4 book ai didi

wordpress - 元框不保存内容

转载 作者:行者123 更新时间:2023-12-02 10:20:22 24 4
gpt4 key购买 nike

元框不会保存其内容,但该内容会显示在页面上。编辑该页面时,元框为空并且其内容丢失。这是我的代码:

/*
* Custom meta boxes
*/

add_action( 'add_meta_boxes', 'create_meta_boxes' );

function create_meta_boxes() {
add_meta_box( 'my-meta-box-id', __('Additional information'), 'meta_box_info', 'Post', 'normal', 'low' );
}


// Create meta box: Additional information

function meta_box_info( $post ) {

$values = get_post_custom( $post->ID );

wp_nonce_field( 'my_meta_box_nonce', 'meta_box_nonce' );
?>

<textarea name="meta_box_info" id="meta_box_info" style="width: 100%; margin: 6px 0;" /><?php echo $text; ?></textarea>

<?php
}

// Save meta box: Additional information

add_action( 'save_post', 'save_meta_box_info' );
function save_meta_box_info( $post_id ) {

if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return;

if( !isset( $_POST['meta_box_nonce'] ) || !wp_verify_nonce( $_POST['meta_box_nonce'], 'my_meta_box_nonce' ) ) return;

if( !current_user_can( 'edit_post' ) ) return;

$allowed = array(
'a' => array( // on allow a tags
'href' => array() // and those anchords can only have href attribute
)
);

if( isset( $_POST['meta_box_info'] ) )
update_post_meta( $post_id, 'meta_box_info', wp_kses( $_POST['meta_box_info'], $allowed ) );

$chk = ( isset( $_POST['meta_box_info_rotation'] ) && $_POST['meta_box_info_rotation'] ) ? 'on' : 'off';

update_post_meta( $post_id, 'meta_box_info_rotation', $chk );
}

最佳答案

您需要在 Textarea 之前添加此行

<?php $text = get_post_meta($post->ID, 'meta_box_info', true); ?>

关于wordpress - 元框不保存内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17651974/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com