एकल कस्टम पोस्ट प्रकार के लिए स्वत: सहेजना बंद करना संभव है


10

इसलिए मैं अपने कस्टम पोस्ट प्रकार में अपने कस्टम फ़ील्ड के साथ एक समस्या रख रहा हूं। जिस भी कारण से खेत बचते हैं और फिर कुछ बेतरतीब ढंग से साफ हो जाते हैं ... मुझे यकीन है कि यह यादृच्छिक नहीं है, लेकिन मुझे यकीन नहीं है कि ऐसा होने के लिए क्या शुरू हो रहा है। यहाँ मेरे कस्टम पोस्ट प्रकार के लिए कोड है:

    // Custom Post Type: Strategic Giving
add_action('init', 'giving_register');

function giving_register() {

  $labels = array(
    'name' => _x('Invest Items', 'post type general name'),
    'singular_name' => _x('Item', 'post type singular name'),
    'add_new' => _x('Add New', 'giving item'),
    'add_new_item' => __('Add New Item'),
    'edit_item' => __('Edit Item'),
    'new_item' => __('New Item'),
    'view_item' => __('View Item'),
    'search_items' => __('Search Items'),
    'not_found' =>  __('Nothing found'),
    'not_found_in_trash' => __('Nothing found in Trash'),
    'parent_item_colon' => ''
    );

  $args = array(
    'labels' => $labels,
    'public' => true,
    'publicly_queryable' => true,
    'show_ui' => true,
    'query_var' => true,
    'menu_icon' => get_stylesheet_directory_uri() . '/images/cpt-giving.png',
    'rewrite' => array( 'slug' => 'giving_items' ),
    'capability_type' => 'post',
    'hierarchical' => true,
    'menu_position' => null,
    'supports' => array('title','thumbnail','editor'),
    'paged' => false,
    ); 

  register_post_type( 'givings' , $args );
}

register_post_type( 'givings' , $args );

add_action("admin_init", "giving_admin_init");

function giving_admin_init(){
  add_meta_box("giving_info-meta", "Item Options", "giving_info", "givings", "side", "high");
}

function giving_info(){
  global $post;
  $custom = get_post_custom($post->ID);
  $amount = $custom["amount"][0];
  $monthly = $custom["monthly"][0];
  $user_entered_value = $custom["user_entered_value"][0];
  $item_name = $custom["item_name"][0];
  $special = $custom["special"][0];
  ?>
  <div style="text-align: right;">
    <p>
      <label for="amount"><strong>Amount:</strong></label>  
      <input style="width: 180px" type="text" name="amount" id="amount" value="<?php echo $amount; ?>" />
      <em>Example: 30.00</em>
    </p>
    <p>
      <label for="monthly"><strong>Monthly?</strong></label>  
      <?php if ($monthly == 'on') { ?>
        <input type="checkbox" name="monthly" id="monthly" checked="checked" />
      <?php } else { ?>
        <input type="checkbox" name="monthly" id="monthly" />
      <?php } ?>      
    </p>
    <p>
      <label for="special"><strong>Special Item?</strong></label>  
      <?php if ($special == 'on') { ?>
        <input type="checkbox" name="special" id="special" checked="checked" />
      <?php } else { ?>
        <input type="checkbox" name="special" id="special" />
      <?php } ?>      
    </p>
    <p>
      <label for="user_entered_value"><strong>Allow Giver To Enter Custom Value?</strong></label>  
      <?php if ($user_entered_value == 'on') { ?>
        <input type="checkbox" name="user_entered_value" id="user_entered_value" checked="checked" />
      <?php } else { ?>
        <input type="checkbox" name="user_entered_value" id="user_entered_value" />
      <?php } ?>      
    </p>
    <p>
      <label for="item_name"><strong>Item Name:</strong></label>              
      <input style="width: 180px" type="text" name="item_name" id="item_name" value="<?php echo $item_name; ?>" /><br />
      If item is a <em>per item</em> then enter the name of the singular item. <em>Example: Chair - which will be displayed as "30.00 per Chair"</em>
    </p>
    <p style="text-align: left;">
      Strategic Giving photo must be horizontal and uploaded/set as the <strong>Featured Image</strong> (see below).
      <em>Do not add photo to content area.</em>
    </p>
  </div>
  <?php }  

add_action('save_post', 'giving_save_details_amount');
add_action('save_post', 'giving_save_details_monthly');
add_action('save_post', 'giving_save_details_user_entered_value');
add_action('save_post', 'giving_save_details_item_name');
add_action('save_post', 'giving_save_details_special');

function giving_save_details_amount(){
  global $post;
  update_post_meta($post->ID, "amount", $_POST["amount"]);
}

function giving_save_details_monthly(){
  global $post;
  update_post_meta($post->ID, "monthly", $_POST["monthly"]);
}

function giving_save_details_user_entered_value(){
  global $post;
  update_post_meta($post->ID, "user_entered_value", $_POST["user_entered_value"]);
}

function giving_save_details_item_name(){
  global $post;
  update_post_meta($post->ID, "item_name", $_POST["item_name"]);
}

function giving_save_details_special(){
  global $post;
  update_post_meta($post->ID, "special", $_POST["special"]);
}

add_action("manage_pages_custom_column",  "givings_custom_columns");
add_filter("manage_edit-givings_columns", "givings_edit_columns");

function givings_edit_columns($columns){
  $columns = array(
    "cb" => "<input type=\"checkbox\" />",
    "title" => "Strategic Giving Item",
    "amount" => "Amount",
    "monthly" => "Monthly",
    "special" => "Special Item",
    "giving_image" => "Image"
    );

  return $columns;
}

function givings_custom_columns($column){
  global $post;

  switch ($column) {
    case "amount":
    $custom = get_post_custom();
    echo $custom["amount"][0];
    break;

    case "monthly":
    $custom = get_post_custom();
    $is_monthly = $custom["monthly"][0];
    if ($is_monthly == "on") {
      echo "Yes";
    };
    break;

    case "special":
    $custom = get_post_custom();
    $is_special = $custom["special"][0];
    if ($is_special == "on") {
      echo "Yes";
    };
    break;

    case "giving_image":
      echo get_the_post_thumbnail(NULL, 'staff_admin');
    break;
  }
}

function giving_amount(){
  $custom = get_post_custom();
  return $custom["amount"][0];
}

function giving_monthly(){
  $custom = get_post_custom();
  return $custom["monthly"][0];
}

function giving_special(){
  $custom = get_post_custom();
  return $custom["special"][0];
}

function giving_user_entered_value(){
  $custom = get_post_custom();
  return $custom["user_entered_value"][0];
}

function giving_item_name(){
  $custom = get_post_custom();
  return $custom["item_name"][0];
}

अद्यतन: तो मैंने और अधिक शोध किया और यह पता लगाया। ऑटोसैव (उर्फ संशोधन) - पोस्ट मेटाडेटा स्वयं को हटा देता है

क्या केवल एक ही प्रकार के पोस्ट के लिए ऑटोसैव को बंद करना संभव है और विश्व स्तर पर नहीं?


2
क्या आपने ऊपर पोस्ट कोड को संपादित किया? क्योंकि आपके पास सरणी revisionsमें नहीं है supports, इसलिए आपके "Givings" पोस्ट प्रकार के लिए ऑटोसैव को अक्षम किया जाना चाहिए
onetrickpony

जवाबों:


17

यह एक आसान है :)

add_action( 'admin_enqueue_scripts', 'my_admin_enqueue_scripts' );
function my_admin_enqueue_scripts() {
    if ( 'your_post_type' == get_post_type() )
        wp_dequeue_script( 'autosave' );
}

पूरी तरह से साफ नहीं। यदि आप पोस्ट इनपुट के शीर्षक के तहत लाइन में पर्मलिंक पूर्वावलोकन करना चाहते हैं तो उस स्क्रिप्ट की आवश्यकता है। नए पदों पर यह विशेष रूप से ध्यान देने योग्य है, क्योंकि आटोवेव के बिना पर्मलिंक रेखा अदृश्य रहती है। वर्कअराउंड एक ऐसी स्क्रिप्ट को जोड़ना होगा जो ऑटोसैव.जेएस की आवश्यक वस्तुओं और कार्यों में स्टब्स करता है।
किचन

4

जाहिरा तौर पर ऑटोसैव जावास्क्रिप्ट को डी-रजिस्टर करना अनिवार्य रूप से ऑटोसैव रूटीन को बंद कर देगा। यह जरूरी नहीं है कि उस पोस्ट प्रकार पर ऑटोसैव की क्षमता को अक्षम किया जाए, लेकिन यह मूल ऑटोसैव स्क्रिप्ट को चलाना बंद कर देगा।

यह एक सही समाधान नहीं है, लेकिन इसका वांछित प्रभाव होना चाहिए।

function wpse5584_kill_autosave_on_postype( $src, $handle ) {
    global $typenow;
    if( 'autosave' != $handle || $typenow != 'your-post-type-here' )
        return $src;
    return '';
}
add_filter( 'script_loader_src', 'wpse5584_kill_autosave_on_postype', 10, 2 );

उम्मीद है की वो मदद करदे...

संपादित करें: उपरोक्त कोड के साथ, जब उस प्रकार के लिए पोस्ट निर्माण स्क्रीन पर आपको पृष्ठ के स्रोत में निम्नलिखित देखना चाहिए।

<script type='text/javascript'>
/* <![CDATA[ */
var autosaveL10n = {
    autosaveInterval: "60",
    previewPageText: "Preview this Page",
    previewPostText: "Preview this Post",
    requestFile: "http://yoursite/wp-admin/admin-ajax.php",
    savingText: "Saving Draft&#8230;",
    saveAlert: "The changes you made will be lost if you navigate away from this page."
};
try{convertEntities(autosaveL10n);}catch(e){};
/* ]]> */
</script>
<script type='text/javascript' src=''></script>

चर वे नहीं हैं जो हम यहां देख रहे हैं, यह नीचे की पटकथा है, ध्यान दें कि अब कहीं भी अंक नहीं है (यह मूल रूप से ऑटोसैव.जेएस फ़ाइल की ओर इशारा करता था)।

क्या आपको उपरोक्त कुछ समान दिखाई देता है, या src अभी भी ऑटोसैव.जेएस फ़ाइल के पथ के साथ लिखा जा रहा है?

EDIT2: यह वह है जिसे मैं संक्षिप्त स्क्रिप्ट से देखता हूं।

<script type='text/javascript' src='http://example/wp-admin/load-scripts.php?c=0&amp;load=hoverIntent,common,jquery-color,schedule,wp-ajax-response,suggest,wp-lists,jquery-ui-core,jquery-ui-sortable,postbox,post,word-count,thickbox,media-upload&amp;ver=e1039729e12ab87705c047de01b94e73'></script>

ध्यान दें कि ऑटोसैव स्क्रिप्ट को अभी भी बाहर रखा जा रहा है .. (इस प्रकार अब तक मैं आपकी समस्या को दोहराने में असमर्थ हूं)।

आप मेरे द्वारा प्रदान किया गया कोड कहां रख रहे हैं?


धन्यवाद!! क्या इसमें कई पोस्ट प्रकार डालना संभव है? या क्या मुझे प्रत्येक सीपीटी के लिए ऐसा करना होगा?
मार्क

शर्म की बात है। यह एक ही cpt के लिए काम नहीं किया। मुझे अभी भी यह मिल रहा है: cl.ly/3gTR - जो कस्टम फ़ील्ड्स को साफ़ कर रहा है।
मार्क

पृष्ठ के स्रोत की जाँच करें और देखें कि क्या ऑटोसैव.जेएस फ़ाइल अभी भी है, अगर यह अभी भी वहां है, तो फ़िल्टर अपेक्षित रूप से काम नहीं कर रहा है (या मुझे कुछ याद आ रहा है) .. क्विक संपादित करें: मेरे लिए काम करने लगता है बस ठीक है, क्या आपको अपने पोस्ट प्रकार से मेल करने के लिए नमूना कोड में पाठ को बदलना याद है?
t31os

हाँ मैं फिर से कोशिश करूँगा और स्रोत को देखूंगा। और क्या होगा अगर मैं कई पोस्ट प्रकार करना चाहता हूं?
मार्क

1
आपने कहा कि यह एक सही समाधान नहीं है, लेकिन यह भी एक अच्छा समाधान नहीं है :)
kovshenin

1

मेरे पास मेरे द्वारा बनाए गए प्लगइन्स में से एक पर बस एक समस्या थी, और हमने सिर्फ यह जांचने का फैसला किया कि क्या हम अपने पृष्ठों (wpsc- उत्पाद और पोस्ट या पेज पर नहीं) पर थे और फिर हमने बस ऑटोसवे स्क्रिप्ट को डीरगिस्टर किया, इसलिए, , CPT 'wpsc-product' है और हमारा फंक्शन (असंबंधित कोड हटाकर कुछ इस तरह दिखता है:

function admin_include_css_and_js_refac( $pagehook ) {
    global $post_type, $current_screen;
    if($post_type == 'wpsc-product' )
    wp_deregister_script( 'autosave' );         
}
add_action( 'admin_enqueue_scripts', 'admin_include_css_and_js_refac' );

कृपया कोर स्क्रिप्ट को डीरजिस्टर न करें।
कोवशेनिन
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.