问题描述
我基本上想创建一个表 (最好是 AJAXified),让用户输入一行信息,并能够添加新的信息行,并删除所选的信息。
我找到了 this post 和 this post 。设计方面看起来很简单,但我想知道功能。如何将字段内容添加到数据库并召集他们备份?如何将该页面”plugged in” 整合到 Wordpress?我真的不知道从哪里开始。
我从一个对 HTML& CSS,而且与 JS /jQuery 相当,但是基本上只是找出了他发现的 PHP 代码。
任何帮助将不胜感激,即使告诉我现在超出了我,还要玩 X 插件。 FWIW,我正在考虑使用自定义帖子类型或 Magic Fields 插件,但是我想要一个更多的 user-friendly 体验。
非常感谢!
最佳解决方案
我几乎开始在同一个地方,而且已经创造了类似的东西。这是我认为你需要知道的。
1) 首先阐述如何创建你的基本问候世界。一个简单的插件将包含在插入到您的 plugins 目录中的 PHP 文件顶部的几个注释。注意调用类的变量使其移动。该类的构造函数调用 add_top_level_menu,当单击此处 (参见 $ function variable) 时, display_page() 函数将被启动,开始构建您的页面。
<?php
/*
Plugin Name: Your plugin name
Description: Description
Version: 1.0
Author: Your Name
Author URI: http://yourweb.com
*/
$myplugvariable = new yourpluginname();
class yourpluginname
{
function __construct(){
add_action( 'admin_menu', array( &$this, 'add_top_level_menu' ) );
}
function add_admin_scripts(){
//adds javavascript files for this plugin.
wp_enqueue_script('my-script-name', WP_PLUGIN_URL . '/' . dirname(plugin_basename(__FILE__)) . '/js/javascript.js', array('jquery'), '1.0');
wp_localize_script('my-script-name', 'MyScriptAjax', array('ajaxUrl' => admin_url('admin-ajax.php')));
}
function add_top_level_menu()
{
// Settings for the function call below
$page_title = 'Plugin Name';
$menu_title = 'Plugin Name';
$menu_slug = 'plugin-name';
$function = array( &$this, 'display_page' );
$icon_url = NULL;
$position = '';
// Creates a top level admin menu - this kicks off the 'display_page()' function to build the page
$page = add_menu_page($page_title, $menu_title, $this->capability, $menu_slug, $function, $icon_url, 10);
// Adds an additional sub menu page to the above menu - if we add this, we end up with 2 sub menu pages (the main pages is then in sub menu. But if we omit this, we have no sub menu
// This has been left in incase we want to add an additional page here soon
//add_submenu_page( $menu_slug, $page_title, $page_title, $capability, $menu_slug . '_sub_menu_page', $function );
}
function display_page()
{
if (!current_user_can($this->capability ))
wp_die(__('You do not have sufficient permissions to access this page.'));
//here comes the HTML to build the page in the admin.
echo('HELLO WORLD');
}
}
?>
2) 创建内部函数返回数据后,无论如何。 (使用全局 wordpress 数据函数,例如 $ wpdb-> get_results($ sql) 。
3) 管理员中的 AJAX 与您通常使用的方式有所不同。所有 wordpress AJAX 调用钩入 admin-ajax.php 。我发现这个:http://www.garyc40.com/2010/03/5-tips-for-using-ajax-in-wordpress/#js-global 很好的解释事情。
4) 如果你正在创建表格,下面的工作将为你做的工作。在 codex 中搜索 dbDelta 。
function plugin_install()
{
global $wpdb;
$table_name_prefix = "plugin-name";
$table_name = $wpdb->prefix . "plugin_name";
$sql = "CREATE TABLE " . $table_name . " (
id mediumint(9) NOT NULL AUTO_INCREMENT,
post_id mediumint(9) NOT NULL,
score mediumint(9) NOT NULL
);";
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
dbDelta($sql);
}
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。