मेरे पास एक कस्टम पोस्ट प्रकार Event
है जिसमें एक प्रारंभिक और समाप्ति तिथि / बार कस्टम फ़ील्ड शामिल हैं (पोस्ट एडिट स्क्रीन में मेटाबॉक्सेस के रूप में)।
मैं यह सुनिश्चित करना चाहूंगा कि कोई ईवेंट तारीखों को भरे बिना प्रकाशित (या अनुसूचित) नहीं हो सकता है, क्योंकि इससे ईवेंट डेटा प्रदर्शित करने वाले टेम्प्लेट के साथ समस्याएँ आएंगी (इस तथ्य के अलावा कि यह एक आवश्यक आवश्यकता है!)। हालाँकि, मैं चाहता हूं कि ड्राफ्ट ईवेंट्स हो सकें, जिनकी तैयारी के दौरान उनके पास कोई वैध दिनांक न हो।
मैं save_post
जाँच करने के लिए हुक करने के बारे में सोच रहा था , लेकिन मैं स्थिति को बदलने से कैसे रोक सकता हूँ?
EDIT1: यह वह हुक है जिसका उपयोग मैं अब post_meta को बचाने के लिए कर रहा हूं।
// Save the Metabox Data
function ep_eventposts_save_meta( $post_id, $post ) {
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
return;
if ( !isset( $_POST['ep_eventposts_nonce'] ) )
return;
if ( !wp_verify_nonce( $_POST['ep_eventposts_nonce'], plugin_basename( __FILE__ ) ) )
return;
// Is the user allowed to edit the post or page?
if ( !current_user_can( 'edit_post', $post->ID ) )
return;
// OK, we're authenticated: we need to find and save the data
// We'll put it into an array to make it easier to loop though
//debug
//print_r($_POST);
$metabox_ids = array( '_start', '_end' );
foreach ($metabox_ids as $key ) {
$events_meta[$key . '_date'] = $_POST[$key . '_date'];
$events_meta[$key . '_time'] = $_POST[$key . '_time'];
$events_meta[$key . '_timestamp'] = $events_meta[$key . '_date'] . ' ' . $events_meta[$key . '_time'];
}
$events_meta['_location'] = $_POST['_location'];
if (array_key_exists('_end_timestamp', $_POST))
$events_meta['_all_day'] = $_POST['_all_day'];
// Add values of $events_meta as custom fields
foreach ( $events_meta as $key => $value ) { // Cycle through the $events_meta array!
if ( $post->post_type == 'revision' ) return; // Don't store custom data twice
$value = implode( ',', (array)$value ); // If $value is an array, make it a CSV (unlikely)
if ( get_post_meta( $post->ID, $key, FALSE ) ) { // If the custom field already has a value
update_post_meta( $post->ID, $key, $value );
} else { // If the custom field doesn't have a value
add_post_meta( $post->ID, $key, $value );
}
if ( !$value )
delete_post_meta( $post->ID, $key ); // Delete if blank
}
}
add_action( 'save_post', 'ep_eventposts_save_meta', 1, 2 );
EDIT2: और यह मैं डेटाबेस को सहेजने के बाद पोस्ट डेटा की जांच करने के लिए उपयोग करने की कोशिश कर रहा हूं।
add_action( 'save_post', 'ep_eventposts_check_meta', 99, 2 );
function ep_eventposts_check_meta( $post_id, $post ) {
//check that metadata is complete when a post is published
//print_r($_POST);
if ( $_POST['post_status'] == 'publish' ) {
$custom = get_post_custom($post_id);
//make sure both dates are filled
if ( !array_key_exists('_start_timestamp', $custom ) || !array_key_exists('_end_timestamp', $custom )) {
$post->post_status = 'draft';
wp_update_post($post);
}
//make sure start < end
elseif ( $custom['_start_timestamp'] > $custom['_end_timestamp'] ) {
$post->post_status = 'draft';
wp_update_post($post);
}
else {
return;
}
}
}
इसके साथ मुख्य मुद्दा एक समस्या है जिसे वास्तव में एक और प्रश्न में वर्णित किया गया था : उपयोग करनाwp_update_post()
save_post
हुक के भीतर अनंत लूप को ट्रिगर करता है।
EDIT3: मैंने wp_insert_post_data
इसके बजाय हुक करके, इसे करने का एक तरीका निकालाsave_post
। एकमात्र समस्या यह है कि अब post_status
वापस आ गया है, लेकिन अब "पोस्ट प्रकाशित" कह रहा एक भ्रामक संदेश दिखाता है ( &message=6
रीडायरेक्ट किए गए URL को जोड़कर ), लेकिन स्थिति ड्रॉफ्ट पर सेट है।
add_filter( 'wp_insert_post_data', 'ep_eventposts_check_meta', 99, 2 );
function ep_eventposts_check_meta( $data, $postarr ) {
//check that metadata is complete when a post is published, otherwise revert to draft
if ( $data['post_type'] != 'event' ) {
return $data;
}
if ( $postarr['post_status'] == 'publish' ) {
$custom = get_post_custom($postarr['ID']);
//make sure both dates are filled
if ( !array_key_exists('_start_timestamp', $custom ) || !array_key_exists('_end_timestamp', $custom )) {
$data['post_status'] = 'draft';
}
//make sure start < end
elseif ( $custom['_start_timestamp'] > $custom['_end_timestamp'] ) {
$data['post_status'] = 'draft';
}
//everything fine!
else {
return $data;
}
}
return $data;
}