是否有可能使wordpress插件仅在发布时运行,而不是在更新时运行?

时间:2012-03-09 15:37:14

标签: php wordpress-plugin wordpress

我写了一个wordpress插件,要求我们的作者从外部网站中选择一个主题。除非来自外部站点的主题与之关联,否则不允许作者发布文章。发布文章时,他们选择的主题会在外部网站上更新,因此可以选择再次选择 这一切都按预期工作。我的问题是,当用户更新已发布的文章时,因此该主题不再是可供选择的选项,插件会阻止他们更新,因为没有主题。
我的问题是:有没有办法确保插件仅在最初发布帖子时运行,而不是在更新时运行?

以下是代码(删除了部分):

<?php
*/
Plugin Name: name
Description: Make sure writers articles are associated with a name topic.
*/
add_action('add_meta_boxes','name_add_meta_boxes');

add_action('save_post', 'complete_name_topic');


function name_add_meta_boxes() {
    add_meta_box(
            'name',
            'name',
            'name_html',
            'post',
            'normal'
    );
}


function name_html($post){
    wp_nonce_field(plugin_basename(__FILE__), 'name_nonce');
    $current_user = wp_get_current_user();
    $f_name = utf8_encode($current_user->user_firstname);
    $l_name = utf8_encode($current_user->user_lastname);
    if(!$f_name || !$l_name){
            $display_name = str_replace(' ', '%20', $current_user->display_name);
    }else{
            $display_name = $f_name.'%20'.$l_name;
    }
    $bar = json_decode(www.example.com));
    $foo = get_object_vars($bar);
    echo '<select name="name"><option value="">Choose name Topic</option>';
    foreach($foo as $id => $topic){
    echo "<option value='$id'>$topic</option>";
    }
    echo '</select>';
}

function complete_name_topic($post_id) {
    if(defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
            return;
    if(!wp_verify_nonce($_POST['name_nonce'], plugin_basename(__FILE__)))
            return;
    $id = wp_is_post_revision($post_id);
    if(!$id){
            $permalink = get_permalink($post_id);
    }else{
            $permalink = get_permalink($id);
    }
    if(!isset($_POST['name']) || empty($_POST['name'])){
            $message = 72;
            global $wpdb;
            $wpdb->update($wpdb->posts, array('post_status' => 'pending'), array('ID' => $post_id));
            add_filter('redirect_post_location', create_function('$location', 'return add_query_arg("message", "'.$message.'", $location);'));
    }else{
            $ch = curl_init('www.example.com');
            curl_setopt($ch, CURLOPT_POSTFIELDS, "URL=$permalink");
            curl_exec($ch);
            curl_close($ch);
    }
}


add_filter('post_updated_messages', 'name_error_message');
function name_error_message($messages){
    $messages['post']['**'] = 'A name topic must be associated with this post.';
    return $messages;
}

1 个答案:

答案 0 :(得分:0)

如果您第一次update_post_meta,可以get_post_meta发现在后续更新中是否已经发生过这种情况。