2017-02-23 94 views
0

我目前正在通过如何创建WordPress插件的教程,但由于某些原因,当涉及到发布元数据保存到数据库的部分时,我的代码无法工作。当我点击“发布”或“更新”时,只刷新页面,字段中的内容不见了。本教程是在2015年创建的,我不确定是否在我的代码中丢失了某些内容,或者如果对WordPress如何保存数据进行了更改。下面是本教程特定视频的链接 - https://www.youtube.com/watch?v=waS0gCkuLeM&t=64s&index=10&list=PLIjMj0-5C8TI7Jwell1rTvv5XXyrbKDcy将WordPress发布元数据保存到数据库不工作

,这里是从下教程我的代码:

<?php 

function fd_add_custom_metabox(){ 

add_meta_box(

     'fd_meta', 
     'Pricing Table', 
     'fd_meta_callback', 
     'table', 
     'normal', 
     'core' 

     );} 

add_action('add_meta_boxes', 'fd_add_custom_metabox'); 

function fd_meta_callback($post){ //needed for the $callback parameter above 
    wp_nonce_field(basename(__FILE__), 'fd_table_nonce'); 
    $fd_stored_meta = get_post_meta($post->ID); 


    ?> 

<div> 
    <div class="meta-row"> 
     <div class="meta-th"> 
      <label for="table-title" class="fd-row-title">Title</label> 
     </div> 
     <div class="meta-td"> 
      <input type="text" name="table_id" id="table-title" value="<?php if(!empty ($fd_stored_meta['table_id'])) {echo esc_attr($fd_stored_meta['table_id'][0]); } ?> "> 
     </div> 
    </div> 
</div> 
<div> 
    <div class="meta-row"> 
     <div class="meta-th"> 
      <label for="table-subtitle" class="fd-row-title">Subtitle</label> 
     </div> 
     <div class="meta-td"> 
      <input type="text" name="table_subtitle" id="table-subtitle" value="<?php if(!empty ($fd_stored_meta['table_subtitle'])) {echo esc_attr($fd_stored_meta['table_subtitle'][0]);} ?> "> 
     </div> 
    </div> 
</div> 
<div> 
    <div class="meta-row"> 
     <div class="meta-th"> 
      <label for="table-recurrence" class="fd-row-title">Recurrence</label> 
     </div> 
     <div class="meta-td"> 
      <input type="text" name="table_recurrence" id="table-recurrence" value=""> 
     </div> 
    </div> 
</div> 
<div> 
    <div class="meta-row"> 
     <div class="meta-th"> 
      <label for="table-price" class="fd-row-title">Price</label> 
     </div> 
     <div class="meta-td"> 
      <input type="text" name="table_price" id="table-price" value=""> 
     </div> 
    </div> 
</div> 
<div> 
    <div class="meta-row"> 
     <div class="meta-th"> 
      <span>Features</span> 
     </div> 
     <div class="meta-td"> 

      <textarea name="table_features" rows="8" cols="50"></textarea> 
     </div> 
    </div> 
</div> 
<div class="meta"> 
    <div class="meta-th"> 
     <span>Some Description</span> 
    </div> 
</div> 
<div class="meta-editor"> 
<?php 

    $content = get_post_meta($post->ID, 'some_description', true); 
    $editor = 'some_description'; 
    $settings = array(
    'textarea_rows' => 8, 
    'media_buttons' => true, 

    ); 

    wp_editor($content, $editor, $settings); 
?> 
    </div> 

<?php 


} 

function fd_meta_save($post_id){ 
    //checks save status 
    $is_autosave = wp_is_post_autosave($post_id); 
    $is_revision = wp_is_post_revision($post_id); 
    $is_valid_nonce = (isset($_POST[ 'fd_table_nonce']) && wp_verify_nonce($_POST['fd_table_nonce'], basename(__FILE__)))? 'true' : 'false'; 

    //Exits script depending on save status 
    if ($is_autosave || $is_revision || !$is_valid_nonce){ 
     return; 
    } 

    if (isset ($_POST['table_id'])){ 
     update_post_meta($post_id, 'table_id', sanitize_text_field($_POST[ 'table_id' ])); 
    } 
    if (isset ($_POST['table_subtitle'])){ 
     update_post_meta($post_id, 'table_subtitle', sanitize_text_field($_POST[ 'table_subtitle' ])); 
    } 
    if (isset ($_POST['some_description'])){ 
     update_post_meta($post_id, 'some_description', sanitize_text_field($_POST[ 'some_description' ])); 
    } 
} 
add_action('save_post,', 'fd_meta_save'); 

请注意,我只有PHP中前两个输入捕捉数据和这是最后的WP编辑

请帮助告诉我我错了什么或过去两年发生了什么变化。

+0

任何活动链接? –

+0

您可以写一段代码,使用print_r打印$ fd_stored_meta,并检查值是否到来?这个$ fd_stored_meta = get_post_meta($ post-> ID)后的 ; – Tristup

+0

@Umair我该如何分享这段代码?我只知道Codepen和JSfiddle,但他们不支持PHP,是吗?请让我知道 – Feyt

回答

0

此问题的更新。看起来我在帖子后面的最后有一个逗号 - 所以它应该看起来像这样:add_action('save_post','fd_meta_save');而不是此add_action('save_post,','fd_meta_save');

这解决了我的问题。因为它是以字符串的形式读取的,所以不能将其作为语法错误。

获得的教训 - 即使没有被程序检测到也不会停止查找语法错误