$ wpdb->插入不使用我正在创建的wordpress插件

时间:2015-02-05 22:43:34

标签: php jquery wordpress wordpress-plugin wpdb

一切似乎工作正常,直到我到达插入。我试图让这个在我正在创建的插件上工作。这适用于插件选项部分。

以下是表单代码:

<form id="mcp_form_submit" action="<?php echo admin_url(); ?>/admin-ajax.php">
<?php 
 ?>
<?php $spages = get_select_pages(); ?>
<?php //do_settings_sections( 'mcp-settings-group' ); ?>
<table class="form-table">
    <tr valign="top">
    <th scope="row">Page Title</th>
    <td>
    <select id="select_dropdown" name="page_title">
    <?php foreach ($spages as $spage) {?>
    <?php //check to see if it hasnt already been edited. make function to check ?>
      <option value="<?php echo $spage->ID; ?>"><?php echo $spage->post_name; ?></option>
    <?php } ?>  
    </select>
    </td>
    </tr>

    <tr valign="top">
    <th scope="row">Meta Description</th></td>
    <td><textarea id='metadesc' placeholder="(Max 160 Chars.)" rows="4" cols="50" name="meta_description" value=""></textarea>
    </tr>
</table>

<?php submit_button(); ?>

这是表单提交代码:

function mcp_insert_custom_table_do($post_id, $desc)
{
    global $wpdb;
    //check to see if it exists
    $rw = mcp_get_by_id($post_id);
    if ($rw == NULL) {
        $res = $wpdb->insert( 
        'wp_meta_changer', 
        array( 
            'post_id' => $post_id, 
            'description' => $desc 
        ), 
        array( 
            '%d', 
            '%s' 
        ) 
    );

    return $res;    
    }
    else 
    {
        //Update it
        $res = $wpdb->update( 
            'wp_meta_changer', 
            array( 
                'description' => $desc
            ), 
            array( 'post_id' => $post_id ), 
            array( 
                '%s'
            ), 
            array( '%d' ) 
        );
        return $res;
    }    
}

它适用于AJAX,那部分正在运作。它只是实际的$ wpdb-&gt;插件有问题。

0 个答案:

没有答案