我正在为自定义注册表单开发一个插件。我有第一个文件customapplicationform.php文件,其他文件在侧注册和短代码文件夹中。 所以,我的插件目录结构如下:
--->customapplicationform
|--js
|--ajax-registration.js
|--registration
|--registration.php
|--regsubmit.php
|--scripts.php
|--shortcode
|--display.php
|--shortcodes.php
- customapplicatioform.php
这是错误的:
Fatal error: Call to undefined function add_action() in E:\xampp\htdocs\aism\wp-content\plugins\customapplicationform\registration\scripts.php on line 17
请告诉我这有什么问题?如果有任何比建议我更好的方式。提前谢谢。
1)这是我的customapplicationform.php
文件。
require_once(ABSPATH.'wp-admin/includes/plugin.php');
ob_start();
global $app_db_version;
$app_db_version = '1.0';
function app_install() {
global $wpdb;
global $app_db_version;
$table_name = $wpdb->prefix .'registeration';
$charset_collate = $wpdb->get_charset_collate();
$sql = "CREATE TABLE $table_name (
regid mediumint(9) NOT NULL AUTO_INCREMENT,
time datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
fname varchar(50) NOT NULL,
lname varchar(50) NOT NULL,
email varchar(50) NOT NULL,
phno int(12) NOT NULL,
PRIMARY KEY(regid)
) ";
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
dbDelta( $sql );
add_option( 'app_db_version', $app_db_version );
}
register_activation_hook( __FILE__, 'app_install');
include_once('/shortcode/shortcodes.php');
2)这是我的shortcodes.php
文件。
function shortcode_function( $atts ) {
$plugin_dir_path = dirname(__FILE__);
include_once('display.php');
$data = ob_get_clean();
return $data;
}
add_shortcode( 'custom-application', 'shortcode_function' );
3)这是我的display.php
文件。
include_once(''.dirname(dirname(__FILE__)).'/registration/registration.php');
4)这是我的registration.php
文件。
<form action="<?php echo plugins_url();>/customapplicationform/registration/regsubmit.php" method="Post">
<label>First Name:</label>
<input type="text" name="appfname" id="appfname" />
<label>Last Name :</label>
<input type="text" name="applname" id="applname" />
<label>Email :</label>
<input type="email" name="appemail" id="appemail" />
<label>Phone :</label>
<input type="tel" name="appphone" id="appphone" />
<?php// wp_nonce_field('app_new_user','app_new_user_nonce', true, true ); ?>
<input type="Submit" value="Submit" id="btn-new-user">
</form>
5)这是我的regsubmit.php
文件。
require_once('scripts.php');
// Verify nonce
if( ! wp_verify_nonce( $_POST['app_new_user_nonce'], 'app_new_user' ) )
{
die( 'Ooops, something went wrong, please try again later.' );
}
else {
if(isset($_POST['appemail'])) {
// Post values
echo $fname = $_POST['appfname'];
echo $lname = $_POST['applname'];
echo $email = $_POST['appemail'];
echo $phone = $_POST['appphone'];
$userdata = array(
'fname' => $fname,
'lname' => $lname,
'email' => $email,
'phno' => $phone,
);
$user_id = wp_insert_user( $userdata ) ;
// Return
if( !is_wp_error($user_id) ) {
echo '1';
} else {
echo $user_id->get_error_message();
}
}
}
6)这是我的scripts.php
文件。
function app_register_user_scripts() {
// Enqueue script
wp_register_script('app_reg_script', dirname(__FILE__). '/js/ajax- registration.js', array('jquery'), null, false);
wp_enqueue_script('app_reg_script');
wp_localize_script( 'app_reg_script', 'app_reg_vars', array('app_ajax_url' => admin_url( 'admin-ajax.php' )));
}
add_action('wp_enqueue_scripts', 'app_register_user_scripts');
答案 0 :(得分:1)
这是一个核心功能,如果您的代码通过WordPress激活并通过WordPress访问,则可用。如果您尝试在WordPress范围之外调用您的插件文件(例如,您直接从浏览器接近该文件),则除非您需要从WordPress根目录文件顶部使用wp-load.php,否则add_action不可用。 / p>
答案 1 :(得分:0)
因为我们在$ wp-> init之前调用核心函数;我们需要包含pluggable.php
require_once(ABSPATH .'wp-includes/pluggable.php');