2012-03-01 54 views
0

我想創建一個wordpress插件。該插件包含一個簡單的HTML表單和一些JavaScript。由於Wordpress plugin web表格

+0

不要忘記http://wordpress.stackexchange.com/所有的WordPress相關的問題 – 2012-03-01 12:24:10

回答

1

這是創建插件最簡單的方法

<?php 
/* 
Plugin Name: Coding friends hello world 
Plugin URI: http://www.codingfriends.com/ 
Description: Outputs hello world 
Version: 0.1 
Author: Genux 
Author URI: http://www.codingfriends.com 
License: GPL2 
*/ 

function codingfriends_helloworld() 
{ 
    //put you form here and javascript here 
} 

add_action('get_header', 'codingfriends_helloworld'); 
?>