0

我想要一个自定义字段,一次只能分配给一个帖子。理想情况下直接来自仪表板。

假设我有一个带有 value的自定义字段featured post。 如果我分配给,则-custom 字段的值需要获取值或完全删除。/post-123true
featured post: truepost-111post-123featured postfalse

这意味着我的自定义字段只能分配给一个帖子。

具有指定值的自定义字段只能存在一次。

有没有可以做到的插件?或者是否可以使用 WordPress 插件Types

4

1 回答 1

0

自定义字段保存/更新/删除是在动作钩子中完成的save_post

在更新当前帖子元数据之前,我们会查询所有其他可能包含相同元数据的帖子并将其删除。

基本上:

if ( isset( $_POST['exclusive_post'] )  )
{
    // CHECK FOR OTHER POSTS THAT HAVE THE META DATA SET 
    $args = array(
        'numberposts'     => -1, 
        'offset'          => 0,
        'meta_key'        => 'exclusive_post', 
        'post_type'       => 'post', 
        'post_status'     => 'publish' 
    );
    $results = get_posts( $args );
    foreach( $results as $other_post)
    {
        // REMOVE THE META DATA FROM OTHER POSTS
        delete_post_meta( $other_post->ID, 'exclusive_post' );
    }

    // UPDATE THE CURRENT POST META DATA
    update_post_meta( $post_id, 'exclusive_post', $_POST['exclusive_post'] );
} 
else 
{
        // NO POST META DATA IN CURRENT POST, REMOVE META
    delete_post_meta( $post_id, 'exclusive_post' );
}

在这里,一个完整的工作示例使用基于Add a checkbox to post screen 的元框,将类添加到标题

在此处输入图像描述

<?php
/**
 * Plugin Name: Exclusive Post Meta Box
 * Description: Creates a custom field that can only be assigned to one post.
 * Plugin URI:  http://stackoverflow.com/q/15721612/1287812
 * Author:      brasofilo
 * Author URI:  https://wordpress.stackexchange.com/users/12615/brasofilo
 */


/* Define the custom box */
add_action( 'add_meta_boxes', 'wpse_61041_add_custom_box' );

/* Do something with the data entered */
add_action( 'save_post', 'wpse_61041_save_postdata', 10, 2 );

/* Adds a box to the main column on the Post and Page edit screens */
function wpse_61041_add_custom_box() {
    add_meta_box( 
        'wpse_61041_sectionid',
        'Exclusive Post',
        'wpse_61041_inner_custom_box',
        'post',
        'side',
        'high'
    );
}

/* Prints the box content */
function wpse_61041_inner_custom_box($post)
{
    // Use nonce for verification
    wp_nonce_field( plugin_basename( __FILE__ ), 'wpse_61041_noncename' );

    // Get saved value, if none exists, "default" is selected
    $saved = get_post_meta( $post->ID, 'exclusive_post', true);

    printf(
        '<input type="checkbox" name="exclusive_post" value="exclusive_post" id="exclusive_post" %1$s />'.
        '<label for="exclusive_post"> This is the one.' .
        '</label><br>',
        checked($saved, 'exclusive_post', false)
    );

}

/* When the post is saved, saves our custom data */
function wpse_61041_save_postdata( $post_id, $post_object ) 
{
      // verify if this is an auto save routine. 
      // If it is our form has not been submitted, so we dont want to do anything
      if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) 
          return;

      // verify this came from the our screen and with proper authorization,
      // because save_post can be triggered at other times
      if ( !wp_verify_nonce( $_POST['wpse_61041_noncename'], plugin_basename( __FILE__ ) ) )
          return;

    // don't run if saving revision.
    if ( 'revision' == $post_object->post_type )
        return;

    if ( isset( $_POST['exclusive_post'] )  )
    {
        // CHECK FOR OTHER POSTS THAT HAVE THE META DATA SET 
        $args = array(
            'numberposts'     => -1, 
            'offset'          => 0,
            'meta_key'        => 'exclusive_post', 
            'post_type'       => 'post', 
            'post_status'     => 'publish' 
        );
        $results = get_posts( $args );
        foreach( $results as $other_post)
        {
            // REMOVE THE META DATA FROM OTHER POSTS
            delete_post_meta( $other_post->ID, 'exclusive_post' );
        }

        // UPDATE THE CURRENT POST META DATA
        update_post_meta( $post_id, 'exclusive_post', $_POST['exclusive_post'] );
    } 
    else 
    {
        // NO POST META DATA IN CURRENT POST, REMOVE META
        delete_post_meta( $post_id, 'exclusive_post' );
    }

}
于 2013-04-01T14:10:58.397 回答