$post_id или $post-›ID в конструкции метабокса wordpress

Может кто-нибудь объяснить, почему при создании мета-боксов для обратного вызова требуется, чтобы идентификатор сообщения передавался через $post->ID, однако с хуком действия «save_post» функция может передавать $post_id. Общее объяснение того, когда использовать какой из них, поможет прояснить некоторые проблемы, с которыми я столкнулся, спасибо.

ex:

function show_custom_meta_box($post) {
    $meta = get_post_meta($post->ID, 'custom_meta_class', true); 
// Use nonce for verification
echo '<input type="hidden" name="custom_meta_box_nonce" value="'.wp_create_nonce(basename(__FILE__)).'" />';

    // Begin the field table and loop
    echo '<table class="form-table">';

        echo '<tr>
                <th><label for="custom-meta-class">Custom Meta Box</label></th>
                <td>
                <input class="widefat" type="text" name="custom-meta-class" id="custom-meta-class" value="'.$meta.'" size="50" />';

        echo '</td></tr>';

    echo '</table>'; // end table
}

и для $post_id

function save_custom_meta($post) {

    if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return;
    /* Verify the nonce before proceeding. */
    if ( !isset( $_POST['custom_meta_box_nonce'] ) || !wp_verify_nonce( $_POST['custom_meta_box_nonce'], basename( __FILE__ ) ) )
        return $post_id;
    $post_type = get_post_type_object( $post->post_type );
    /* Check if the current user has permission to edit the post. */
    if ( !current_user_can( $post_type->cap->edit_post, $post_id ) )
        return $post_id;
    /* Get the posted data and sanitize it for use as an HTML class. */
    $new_meta_value = ( isset( $_POST['custom-meta-class'] ) ? sanitize_html_class( $_POST['custom-meta-class'] ) : '' );
    /* Get the meta key. */
    $meta_key = 'custom_meta_class';
    /* Get the meta value of the custom field key. */
    $meta_value = get_post_meta( $post_id, $meta_key, true );

    if ( $new_meta_value && '' == $meta_value )
        add_post_meta( $post_id, $meta_key, $new_meta_value, true );

    /* If the new meta value does not match the old value, update it. */
    elseif ( $new_meta_value && $new_meta_value != $meta_value )
        update_post_meta( $post_id, $meta_key, $new_meta_value );

    /* If there is no new meta value but an old value exists, delete it. */
    elseif ( '' == $new_meta_value && $meta_value )
        delete_post_meta( $post_id, $meta_key, $meta_value );
}

person T110    schedule 04.09.2013    source источник


Ответы (1)


У меня нет ответа, но у меня точно такая же проблема. Я удивлен, что за последние 7 лет никто не вмешался.

Вот мой код, он работает (в functions.php)

add_action('save_post','extract_citations',100,1);
function extract_citations($post_id){
$the_post = get_post($post_id);
$content = $the_post->post_content;
preg_match_all('/<a\s+.*?href=[\"\']?([^\"\' >]*)[\"\']?[^>]*>(.*?)<\/a>/i',$content,$citation_array);
$citation_urls = $citation_array[1];
update_post_meta($post_id,'citations',serialize($citation_urls));
}

Вот код, который НЕ работает, несмотря на то, что он теоретически правильный:

add_action('save_post','extract_citations',100,1);
function extract_citations($post){
$the_post = get_post($post->ID);
$content = $the_post->post_content;
preg_match_all('/<a\s+.*?href=[\"\']?([^\"\' >]*)[\"\']?[^>]*>(.*?)<\/a>/i',$content,$citation_array);
$citation_urls = $citation_array[1];
update_post_meta($post->ID,'citations',serialize($citation_urls));
}
person Michael Hayes    schedule 19.04.2021